
.tableClassement > tbody > tr > td:nth-child(1) {
  position: sticky;
  left:0px;
        }
.tableClassement > tbody > tr > td:nth-child(4) {
  position: sticky;
  left: 15px;
        }
  .tableClassement> th:nth-child(4) {
          position: sticky;
          left:15px;
          opacity: 1;

        }


    .tableClassement > tbody > tr  > td:nth-child(1) {

    opacity: 1;
    }

    .tableClassement > tbody > tr> td:nth-child(2) {

     opacity: 1;
    }
    .tableClassement > tbody > tr > td:nth-child(3) {

     opacity: 1;
    }
    .tableClassement > tbody > tr > td:nth-child(4) {

     opacity: 1;
    }

    /* On cible les 4 premières colonnes (th et td) */
    .tableClassement th:nth-child(-n+4),
    .tableClassement td:nth-child(-n+4) {
        position: sticky !important;
        z-index: 10 !important;
        opacity: 1 !important;
        /* On force le fond opaque pour bloquer la transparence du striped */
        background-color: #060913 !important;
    }

    .tableManagers > tbody > tr > td:nth-child(1) {
     position: sticky;
    left:0em;
    font-weight: bold;
    color:white;
    z-index: 10;
           }
    .tableManagers > tbody > tr > td:nth-child(2) {

           font-weight: bold;
           color:white;
    }
    /* Lignes impaires (ou base) */
    .tableManagers tbody tr:nth-of-type(odd) td:nth-child(-n+4) {
        background-color: #060913 !important;
    }

    /* Lignes paires (Striped) - On met une couleur solide légèrement différente */
    .tableManagers.table-striped tbody tr:nth-of-type(even) td:nth-child(-n+4) {
        background-color: #0c121d !important; /* Un bleu très proche mais opaque */
    }
