/* =========================================
   Youth Sports Tables
   ========================================= */

.sports-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    border: 1px solid #d9d9d9;
}

/* Table Header */
.sports-table thead th {
    background-color: #f2f2f2;
    color: #333;
    font-weight: 700;
    text-align: left;
    padding: 14px 16px;
    border-bottom: 2px solid #ccc;
}

/* Table Cells */
.sports-table tbody th,
.sports-table tbody td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #ddd;
}

/* Every other row - light grey */
.sports-table tbody tr:nth-child(even) {
    background-color: #f6f6f6;
}

/* White rows */
.sports-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

/* Bold first column */
.sports-table tbody th:first-child,
.sports-table tbody td:first-child {
    font-weight: 600;
}

/* Remove bottom border from final row */
.sports-table tbody tr:last-child th,
.sports-table tbody tr:last-child td {
    border-bottom: none;
}


/* =========================================
   Mobile
   ========================================= */

@media (max-width: 767px) {

    .sports-table {
        font-size: 0.95rem;
        margin: 1rem 0 1.5rem;
    }

    .sports-table thead th {
        padding: 12px 10px;
    }

    .sports-table tbody th,
    .sports-table tbody td {
        padding: 12px 10px;
    }

}