.footstats-standings-wrapper {
    width: 100%;
    margin: 20px 0;
    overflow-x: auto;
    /* Horizontal scroll on mobile */
    -webkit-overflow-scrolling: touch;
}

.footstats-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    /* Force scroll on small screens */
    font-size: 14px;
}

.footstats-table th,
.footstats-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.footstats-table th {
    background-color: #f5f5f5;
    /* Neutral default */
    font-weight: 600;
}

.footstats-table tr:hover {
    background-color: #fafafa;
}

.footstats-team-cell {
    display: flex;
    align-items: center;
}

.footstats-team-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

/* Rank column width */
.footstats-col-rank {
    width: 40px;
    text-align: center;
}

/* Points column emphasis */
.footstats-col-pts {
    font-weight: bold;
}

.table-hide-1 tr > :nth-child(1),
.table-hide-2 tr > :nth-child(2),
.table-hide-3 tr > :nth-child(3),
.table-hide-4 tr > :nth-child(4),
.table-hide-5 tr > :nth-child(5),
.table-hide-6 tr > :nth-child(6),
.table-hide-7 tr > :nth-child(7),
.table-hide-8 tr > :nth-child(8),
.table-hide-9 tr > :nth-child(9),
.table-hide-10 tr > :nth-child(10) { 
    display: none;
}

.table-bold-last tbody > tr > td:last-child {
    font-weight: 700;
}