
/* nettoyer le wrapper */
.datatable-wrapper .datatable-top,
.datatable-wrapper .datatable-bottom,
.datatable-wrapper .datatable-container { border: 0 !important; }

.datatable-wrapper .datatable-bottom { border-top: 0 !important; padding-top: .25rem; }

/* table = grille bootstrap-like */
.datatable-wrapper .datatable-table {
    width: 100%;
    border-collapse: collapse !important;  /* évite les doubles lignes internes */
}

/* trait AU-DESSUS et EN DESSOUS de toute la table (une seule ligne chacun) */
.datatable-wrapper .datatable-container { position: relative; }
.datatable-wrapper .datatable-container::before,
.datatable-wrapper .datatable-container::after {
    content: "";
    position: absolute;
    left: 0; right: 0; height: 1px; background: #dee2e6;
}
.datatable-wrapper .datatable-container::before { top: 0; }     /* trait haut */
.datatable-wrapper .datatable-container::after  { bottom: 0; }  /* trait bas */

/* header plus foncé + séparation claire */
.datatable-wrapper .datatable-table thead th {
    border-bottom: 2px solid #69707A !important;
}

/* quadrillage vertical (gauche sur ttes cellules, droite seulement sur la dernière) */
.datatable-wrapper .datatable-table th,
.datatable-wrapper .datatable-table td {
    border-left: 1px solid #dee2e6 !important;
}
.datatable-wrapper .datatable-table th:last-child,
.datatable-wrapper .datatable-table td:last-child {
    border-right: 1px solid #dee2e6 !important;
}

/* lignes horizontales internes */
.datatable-wrapper .datatable-table tbody td {
    border-top: 1px solid #edeff2 !important;
}

/* supprimer tout autre bordure du bas pour éviter le "double trait" */
.datatable-wrapper .datatable-table tbody tr:last-child td { border-bottom: 0 !important; }

/* select  + input recherche */
.datatable-top, .datatable-bottom {padding: 5px 0px 8px 0px !important;}

.datatable-selector, .datatable-input{
    /* look général */
    background-color: #fff;
    border: 1px solid #dee2e6 !important;   /* gris clair */
    border-radius: .375rem !important;      /* bords arrondis (~6px) */

}

/* Lignes plus hautes pour Simple-Datatables */
.datatable-wrapper .datatable-table th,
.datatable-wrapper .datatable-table td {
    padding: .75rem 1rem !important; /* ↑ vertical / horizontal */
    line-height: 1.4;
}
/* Réduit la hauteur des lignes pour toutes les tables Bootstrap (.table)
.table > :not(caption) > * > * {
    padding: .35rem .5rem !important;

}
*/