/* results-table.css */

.results-table-section {
    width: 100%;
    padding: 20px 10px 30px 10px;
}

.results-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #d6e8e5;
    font-family: "Manrope", sans-serif;
}

.results-table caption {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #0d1213;
    text-align: left;
    padding: 14px 16px;
    background-color: #ebf3f2;
    border-bottom: 2px solid #d6e8e5;
}

.results-table thead th {
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 140%;
    color: #0d1213;
    background-color: #f3f7f4;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #d6e8e5;
}

.results-table thead th:first-child {
    width: 40%;
}

.results-table tbody tr {
    border-bottom: 1px solid #e8f0ee;
    transition: background-color 0.2s;
}

.results-table tbody tr:last-child {
    border-bottom: none;
}

.results-table tbody tr:hover {
    background-color: #f8fbfa;
}

.results-table td {
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 140%;
    color: #0d1213;
    padding: 12px 16px;
    vertical-align: top;
}

.results-table td:first-child {
    font-weight: 500;
    color: #0d1213;
    background-color: #fafcfb;
    border-right: 1px solid #e8f0ee;
}

.results-table td.cell-before {
    color: #555f5e;
}

.results-table td.cell-after {
    color: #0d1213;
    font-weight: 500;
}

.results-table td.cell-highlight {
    color: #0d1213;
    font-weight: 600;
}



@media screen and (min-width: 769px) {
    .results-table-section {
        max-width: 100%;
        margin: 0 auto;
        padding: 0px 60px 0px 0px;
    }

    .results-table caption {
        font-size: 18px;
        padding: 16px 24px;
    }

    .results-table thead th {
        font-size: 13px;
        padding: 14px 24px;
    }

    .results-table td {
        font-size: 14px;
        padding: 14px 24px;
    }

    .results-table thead th:first-child {
        width: 35%;
    }
}

