.stp-standings-container {
    padding: 20px;
    margin-top: 85px;
}


.stp-filter-form {
    display: flex;
    gap: 10px;
}

.stp-filter-select-season{
    width: 90px;
    border: none;
    border-radius: 4px;
    padding: 5px 14px;
    letter-spacing: normal;
    box-shadow: 0 2px 4px #00000012, 0 0 4px #00000029;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.stp-filter-select-league{
    width: 200px;
    border: none;
    border-radius: 4px;
    padding: 5px 14px;
    letter-spacing: normal;
    box-shadow: 0 2px 4px #00000012, 0 0 4px #00000029;
    font-weight: 500;
    display: flex;
    align-items: center;
}








.stp-standings-wrapper:not(:first-of-type) {
    margin-top: 48px;
    box-shadow: inset 0 -1px #e5e6e6;
}


.stp-standings-table {
    border-bottom-width: 1px;
    padding-bottom: 1px;


}

.stp-standings-table table,
th,
td {
    border: none !important;
    border-collapse: collapse !important;
}


.stp-standings-table table,
.stp-standings-table table th,
.stp-standings-table table td,
.stp-standings-table table tr {
    background-color: #fff;
    border: none !important;
    border-collapse: collapse !important;
    outline: none !important;
    box-shadow: none !important;
}


.stp-standings-table table,
.stp-standings-table table th,
.stp-standings-table table td,
.stp-standings-table table tr,
.stp-standings-table table:hover,
.stp-standings-table table th:hover,
.stp-standings-table table td:hover,
.stp-standings-table table tr:hover {

    /* border: none !important; */
    border-collapse: collapse !important;
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent !important;

}

.stp-standings-table table tbody tr:nth-child(-n+4) {
    background-color: #ededed !important;
}

.stp-standings-table table tbody tr:nth-child(5),
.stp-standings-table table tbody tr:nth-child(6),
.stp-standings-table table tbody tr:nth-child(7) {
    background-color: #f5f6f6 !important;
}



.stp-standings-table tbody tr:nth-child(4) {
    border-bottom: 1px dashed black !important;
}

.stp-standings-table tbody tr:nth-child(7) {
    border-bottom: 1px dashed black !important;
}

.stp-standings-table tbody tr:nth-child(9) {
    border-bottom: 1px solid black !important;
}

.stp-table thead .stp-table-header {
    border-top: 1px solid #e5e6e6 !important;
    border-bottom: 1px solid #e5e6e6 !important;
}


.stp-table-header {
    height: 50px;
    box-shadow: inset 0 -1px #adb4b7, inset 0 1px #e5e6e6;
}

.stp-table-header th {
    white-space: nowrap;
    min-width: 44px;
}


.stp-table {
    width: 100%;
    font-size: 15px;


}

.stp-club-cell img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}


/* For responsive  */


@media (max-width: 768px) {
    .stp-standings-wrapper {
        overflow-x: auto;
    }

    .stp-standings-table {
        width: max-content;
        min-width: 100%;
        display: block;
        position: relative;
        overflow-x: auto;
    }

    .stp-table {
        border-collapse: separate;
        border-spacing: 0;
        width: max-content;
        min-width: 100%;
    }

    .stp-table thead th,
    .stp-table tbody td {
        white-space: nowrap;
        padding: 8px;
        background: white;
    }

    /* Fix first 3 columns */
    .stp-table thead th:nth-child(1),
    .stp-table tbody td:nth-child(1) {
        position: sticky;
        left: 0;
        z-index: 2;
        background: white;
    }

    .stp-table thead th:nth-child(2),
    .stp-table tbody td:nth-child(2) {
        position: sticky;
        left: 60px;
        /* Adjust according to actual width of column 1 */
        z-index: 2;
        background: white;
    }

    .stp-table thead th:nth-child(3),
    .stp-table tbody td:nth-child(3) {
        position: sticky;
        left: 200px;
        /* Adjust according to actual width of columns 1 and 2 */
        z-index: 2;
        background: white;
    }

    /* Optional: ensure images in club cell don't overflow */
    .stp-club-cell img {
        max-width: 24px;
        height: auto;
        margin-right: 4px;
        vertical-align: middle;
    }

    .stp-club-cell {
        display: flex;
        align-items: center;
    }
}