  /* ------------------------------- */
 /* --- Dictionnaire des couleurs --- */
/* ------------------------------- */
:root {
    --bleuCristalens: #1a237e;
    --cyanCristalens: #17a2b8;
    --gris-fond: #f4f6f9;
    --tabCyan: #e0ffff;
}

/* Couleur du texte de couleur bleu marine */
.text-marine {
    color: var(--bleuCristalens) !important;
}


/* Couleur des erreurs */
.bg-danger{
    /* background-color: #f8d7da !important; */
    background-color: #ea6464 !important;    
    color : white; 
    font-size: 0.75rem;
    padding: 1px 1px;
    border-radius: 6px;
}






  /* --------------------------- */
 /* --- GESTION DES BOUTONS --- */
/* --------------------------- */
.btn {
    background-color: var(--bleuCristalens);
    color: white;
    font-size: 0.85rem;
    border: none;
    border-radius: 6px;
    padding: 6px 18px;
}


/* 5. L'effet "Brillant" au survol */
.btn:hover {
    /* Il devient un peu plus clair et remonte légèrement */
    background-color: var(--cyanCristalens);
    color: white;
}












  /* ----------------------------------------- */
 /* --- GESTION DE LA BARRE DE NAVIGATION --- */
/* ----------------------------------------- */

.navbar-eyeclin {
    background-color: var(--bleuCristalens);
    padding: 0.6rem 1.5rem;
}

.navbar-eyeclin .navbar-brand {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.navbar-eyeclin .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
}

.navbar-eyeclin .nav-link:hover,
.navbar-eyeclin .nav-link.active {
    color: var(--cyanCristalens);
}

.badge-demo {
    background-color: var(--cyanCristalens);
    color: white;
    font-size: 0.7rem;
    padding: 2px 7px;
    border-radius: 10px;
    vertical-align: middle;
    margin-left: 6px;
}

/*

*/
  /* --------------------------------------- */
 /* --- GESTION DES TITRES  DE SECTIONS --- */
/* --------------------------------------- */

.section-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6c757d;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    border-left: 3px solid var(--cyanCristalens);
    padding-left: 8px;
}



  /* ------------------------------------------- */
 /* --- GESTION DES ENCADRES DE VERIFICATON --- */
/* ------------------------------------------- */

.filtre-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    /* Barre colorée fine en haut de la carte */
    border-top: 3px solid var(--cyanCristalens);
}

.filtre-card .card-header {
    background-color: white;
    border-bottom: 1px solid #e9ecef;
    border-radius: 12px 12px 0 0;
    padding: 0.75rem 1.25rem;
}

.filtre-card .card-header .titre-filtre {
    color: var(--bleuCristalens);
    font-weight: 700;
    /* font-size: 0.95rem; */
}

/* Labels des champs de filtre */
.filtre-card label {
    /* font-size: 0.8rem; */
    font-weight: 600;
    color: #495057;
    margin-bottom: 3px;
}

/* Champs select et input dans les filtres */
.filtre-card .form-select,
.filtre-card .form-control {
    /* font-size: 0.85rem; */
    border-color: #ced4da;
    border-radius: 6px;
}

.filtre-card .form-select:focus,
.filtre-card .form-control:focus {
    border-color: var(--cyanCristalens);
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.2);
}

/* Bouton "Appliquer" */
.btn-appliquer {
    background-color: var(--bleuCristalens);
    color: white;
    /* font-size: 0.85rem; */
    border: none;
    border-radius: 6px;
    padding: 6px 18px;
}

.btn-appliquer:hover {
    background-color: var(--bleuCristalens);
    color: white;
}










body { 
    background-color: var(--gris-fond); 
    font-family: 'Segoe UI', sans-serif;
}

.indexTitle {
    color: white;
    /* background-color: var(--cyanCristalens); */
    background-image: linear-gradient(to bottom right, #17a2b8, #0f6f7e);
    padding-top: 20px;
    padding-bottom: 20px;
}

/* header{ */
    /* width: 100%; */
    /* background : var(--bleuCristalens); */
    /* background-image: linear-gradient(135deg, #1a237e 0%, #3949ab 100%); */
    /* padding: 1rem 2rem; */
/* } */

/* header nav a{
    color : white !important; 
    text-align : center;
    font-size : 20px;
    padding : 10px;
    font-weight : bold;
}

header nav a:hover{
    color : yellow;
} */

.informal-text{
    color : red; 
    font-size : 18px;
    padding : 10px;
    font-weight : bold;
}

main form{
    border-radius: 5px;
    background-color: #f2f2f2;
    padding-top: 30px;
    padding-left: 30%;
    padding-right: 30%;
    text-align : center;
}

main form input{
    width: 50%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

footer {
    background : black;
    width: 100%;

    text-align : center;
    position: fixed;
    bottom: 0;
}

footer a {
    color : white;
}

/* table {
  border: 2px solid rgb(140 140 140);
}

th,
td {
  border: 1px solid rgb(160 160 160);
} */