/* ------------------------------- DATATABLES ----------------------------------- */

/* Tableau général */
table.dataTable {
  font-family: 'Quicksand', sans-serif !important;
    background-color: #1e1e1e !important;
    color: #fff !important;
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    margin-bottom: 12px;
}

/* En-tête */
table.dataTable thead {
    background-color: #333 !important;
    color: #fff !important;
}

/* Lignes paires / impaires */
table.dataTable tbody tr.even { background-color: #2a2a2a !important; }
table.dataTable tbody tr.odd  { background-color: #1e1e1e !important; }

/* Cellules */
table.dataTable tbody td {
    padding: 8px !important;
    color: #fff !important;
    border-bottom: 1px solid #444 !important;
}

/* Wrapper pour espacement */
.dataTables_wrapper { margin-top: 12px; margin-bottom: 12px; }

/* Barre de recherche */
.dataTables_filter { margin-bottom: 8px; }
.dataTables_filter input {
    background-color: #222 !important;
    color: #fff !important;
    border: 1px solid #555 !important;
    border-radius: 5px !important;
    padding: 5px !important;
}

/* Pagination boutons */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    background-color: #555 !important;
    color: #fff !important;
    border-radius: 5px !important;
    margin: 0 2px !important;
    padding: 5px 10px !important;
    border: none !important;
    transition: background-color 0.15s !important;
    background-image: none !important;
}

/* Hover = léger assombrissement */
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background-color: #444 !important;
    color: #fff !important;
    background-image: none !important;
}

/* Bouton actif = dégradé bleu */
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background-color: #42424200 !important;
    color: #fff !important;
}

/* Info affichage */
.dataTables_wrapper .dataTables_info {
    color: #fff !important;
    margin-bottom: 8px;
}

/* Croix du champ de recherche de tableau en blanc */
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><line x1='4' y1='4' x2='20' y2='20' stroke='white' stroke-width='2'/><line x1='20' y1='4' x2='4' y2='20' stroke='white' stroke-width='2'/></svg>") no-repeat center;
    cursor: pointer;
}