@media screen and (max-width: 1024px){
    #basketball #standingdiv {
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: auto;
        position: relative;
    }
    #basketball #standingdiv th:first-child, #basketball #standingdiv td:first-child {
        min-width: 30px;
    }
    #basketball #standingdiv th:not(:first-child), #basketball #standingdiv td:not(:first-child) {
        min-width: 80px;
    }
    #basketball #standingdiv th:is(:first-child, :nth-child(2)), #basketball #standingdiv td:is(:first-child, :nth-child(2)) {
        position: sticky;
        left: 0;
    }
    #basketball #standingdiv th:nth-child(2), #basketball #standingdiv td:nth-child(2) {
        left: 33px;
        min-width: 120px;
    }

    #basketball #standingdiv tr:nth-child(odd) td:is(:first-child, :nth-child(2)) {
        background-color: #f7f7f7;
    }
    #basketball #standingdiv tr:nth-child(even) td:is(:first-child, :nth-child(2)) {
        background-color: #fff;
    }
    #basketball #standingdiv .east > * {
        position: sticky;
        width: calc(100dvw - 30px);
        left: 0;
        display: inline-block;
        text-align: center;
    }
    #basketball #standingdiv tr:nth-child(2) td {
        position: relative;
        text-align: left;
     }
     #basketball.dark #standingdiv tr:nth-child(odd) td:is(:first-child, :nth-child(2)) {
        background-color: #222;
    }
     #basketball.dark #standingdiv tr:nth-child(even) td:is(:first-child, :nth-child(2)) {
        background-color: #282828;
    }
}