nao está sendo aplicado

/* ========================================================= BASE DA TABELA ========================================================= */
.table-classificacao {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
}

.table-classificacao th,
.table-classificacao td {
    vertical-align: middle;
    white-space: nowrap;
    background: #fff;
    text-align: center;
}

.table-classificacao tr {
    height: 44px;
}

/* ========================================================= WRAPPER DE SCROLL ========================================================= */
.table-scroll {
    overflow-x: auto;
    overflow-y: visible;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

/* ========================================================= LARGURAS – FONTE ÚNICA DE VERDADE ========================================================= */
/* BLOCO FIXO */
.col-faixa {
    width: 1px;
    padding: 0 !important;
}

.col-pos {
    width: 26px;
}

.col-logo {
    width: 36px;
}

.col-time {
    width: 130px;
}

/* BLOCO ROLÁVEL */
.col-num {
    min-width: 30px;
    text-align: center;
}

.col-ultimos {
    min-width: 120px;
    text-align: center;
}

/* ========================================================= FUNDO EXPLÍCITO (ANTI-VAZAMENTO) ========================================================= */
.col-faixa,
.col-pos,
.col-logo,
.col-time {
    background: #fff;
}

/* ========================================================= ELEMENTOS VISUAIS (SEM ELASTICIDADE) ========================================================= */
.logo-team {
    width: 22px;
    height: 22px;
    display: block;
    margin: 0;
    /* NUNCA auto */
}

.team-name {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.destaque {
    font-weight: 600;
}

/* ========================================================= ÚLTIMOS JOGOS ========================================================= */
.col-ultimos i {
    font-size: 16px;
    margin: 0 2px;
}

/* ========================================================= MOBILE – STICKY LATERAL (CORRETO) ========================================================= */
@media (max-width: 768px) {
    .table-classificacao .col-time {
        box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 768px) {
    .table-classificacao {
        table-layout: fixed;
        min-width: 600px;
    }

    /* ===================== STICKY DAS CÉLULAS ====================== */
    .col-faixa {
        position: sticky;
        left: 0;
        z-index: 10;
    }

    .col-pos {
        position: sticky;
        left: 1px;
        z-index: 10;
    }

    .col-logo {
        position: sticky;
        left: 27px;
        /* 1 + 26 */
        z-index: 10;
    }

    .col-time {
        position: sticky;
        left: 63px;
        /* 1 + 26 + 36 */
        z-index: 10;
        background: #fff;
        box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.15) !important;
    }

    /* ===================== WRAPPER INTERNO (FIXA O CONTEÚDO) ====================== */
    .col-logo .cell-inner,
    .col-time .cell-inner {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .col-logo img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .col-time .team-name {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* ===================== BLOCO ROLÁVEL ====================== */
    .col-num,
    .col-ultimos {
        position: relative;
        z-index: 1;
    }

    /* ===================== MÁSCARA ANTI-VAZAMENTO ====================== */
.col-time::after {
    content: "";
    position: absolute;
    top: 0;
    right: -8px;
    width: 8px;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.18),
        rgba(0,0,0,0)
    );
    pointer-events: none;
}

    /* ajuste fino */
    .logo-team {
        width: 20px;
        height: 20px;
    }
}

/* ========================================================= TABLE-SM – PADDING GLOBAL COM EXCEÇÃO ========================================================= */
.table-sm> :not(caption)>tr>td:not(.col-faixa),
.table-sm> :not(caption)>tr>th:not(.col-faixa) {
    padding: .5rem .5rem !important;
}