:root {
    --bleuCristalens: #1a237e;
    --cyanCristalens: #17a2b8;
    --tabCyan: #e0ffff;
}

body {
    /* zoom: 0.75; Réduit tout à 75% */
    /* -moz-transform: scale(0.75); Correction pour les anciennes versions de Firefox */
    /* -moz-transform-origin: 0 0; */
}

.selectionMenu:link, .selectionMenu:visited {
  background-color: var(--cyanCristalens);
  color: white;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}





  /* ------------------------------------ */
 /* --- MISE EN FORME DES CHECKBOXES --- */
/* ------------------------------------ */

/* On stylise la checkbox elle-même */
input[type="checkbox"] {
    /* Supprime l'apparence par défaut du navigateur */
    appearance: none;
    -webkit-appearance: none;
    
    /* Dimensions : on la rend plus grosse */
    width: 18px;
    height: 18px;
    
    /* Bordure et arrondi */
    border: 2px solid #17a2b8; /* Ta couleur de bordure */
    border-radius: 4px;
    
    /* Alignement et curseur */
    vertical-align: middle;
    cursor: pointer;
    display: inline-grid;
    place-content: center;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
}

/* Style quand la case est cochée */
input[type="checkbox"]:checked {
    background-color: #1a237e; /* Le fond devient bleu */
}

/* Dessin de la petite coche (V) à l'intérieur */
input[type="checkbox"]::before {
    content: "";
    width: 12px;
    height: 12px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em white; /* La couleur de la coche */
    
    /* Création de la forme de la coche avec un clip-path */
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

/* On affiche la coche quand c'est coché */
input[type="checkbox"]:checked::before {
    transform: scale(1);
}

/* Effet au survol */
input[type="checkbox"]:hover {
    border-color: #1a227e;
    /* background-color: #f0f7ff; */
}



  /* ------------------------------------ */
 /* --- GESTION TABLEAU DE COHÉRENCE --- */
/* ------------------------------------ */
.table-coherence thead th {
    padding: 8px 10px !important; /* Plus d'espace en haut/bas (12px) et sur les côtés (8px) */
    vertical-align: middle;
    white-space: nowrap;
    letter-spacing: 0.3px;
    font-size: 0.70rem;

}

.table-coherence tbody td {
    padding: 6px 10px !important; /* Plus d'espace en haut/bas (12px) et sur les côtés (8px) */
    vertical-align: middle;
    /* white-space: nowrap; */
    letter-spacing: 0.3px;
    font-size: 0.70rem;;
}

.table-coherence thead {
    /* background-color: var(--bleu-marine); */
    /* color: white; */
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Survol d'une ligne */
.table-coherence tbody tr:hover {
    background-color: var(--cyan-clair);
    cursor: pointer;
}