/* ═══════════════════════════════════════════════
   Herd Optimizer — En-tête figé sur les tableaux admin
   ═══════════════════════════════════════════════ */

/* Conteneur du tableau — nécessaire pour sticky */
#changelist .results {
    overflow-x: auto;
    max-height: calc(100vh - 220px);
    overflow-y: auto;
}

/* Fige la ligne d'en-tête */
#changelist .results table thead th {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #44b78b;
    color: white;
    /* Ombre pour distinguer l'en-tête du contenu */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Fige aussi la colonne checkbox si présente */
#changelist .results table thead th:first-child {
    z-index: 11;
}