/* ==========================================================================
   [ÉTAT : FINAL]    Date : 22-05-2026 16:22:00
   FICHIER : seva.css
   RÔLE : Feuille de style du tableau de bord d'administration (SEVA)
   Auteurs : Yvan Dubé & Gemini (IA Collaboratrice)
   ========================================================================== */

/* ==========================================================================
   1. TITRES DES SECTIONS
   ========================================================================== */
h2, h3 {
    color: var(--couleur-primaire);
    text-align: left;
    margin: 40px 0 10px 25px;
    font-size: 22px;
    font-weight: bold;
}

/* ==========================================================================
   2. CONTENEUR DES GRILLES (BOÎTE DE SECTION)
   ========================================================================== */
.boite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 250px); 
    justify-content: center;
    gap: 20px;
    
    border: 2px solid var(--couleur-bordure);
    border-radius: 15px;
    padding: 25px;
    margin: 0 15px 40px 15px;
    background-color: var(--couleur-grise-pale, #fdfdfd);
    box-shadow: 2px 2px 10px rgba(0,0,0,0.05);
}

/* ==========================================================================
   3. ITEMS ET LIENS (BOUTONS CLIQUABLES)
   ========================================================================== */
.item-grid {
    display: flex;
    height: 45px;
}

.item-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    
    text-decoration: none;
    background-color: #925fb9; /* Violet intermédiaire */
    color: white !important;
    
    padding: 0 15px;
    border-radius: var(--radius);
    border: 1px solid var(--couleur-bordure, #767676);
    
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.item-grid a:hover {
    background-color: var(--couleur-primaire-hover);
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}/*
 * ========================================================
 * [ÉTAT : FINAL] Date : 21-05-2026 15:08:00
 * FICHIER : seva.css
 * RÔLE : Feuille de style du tableau de bord d'administration (SEVA)
 * Auteurs : Yvan Dubé & Gemini (IA Collaboratrice)
 * =========================================================
 */

/* ==========================================================================
   1. TITRES DES SECTIONS
   ========================================================================== */
h2, h3 {
    color: var(--couleur-primaire);
    text-align: left;
    margin: 40px 0 10px 25px;
    font-size: 22px;
    font-weight: bold;
}

/* ==========================================================================
   2. CONTENEUR DES GRILLES (BOÎTE DE SECTION)
   ========================================================================== */
.boite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 250px); 
    justify-content: center;
    gap: 20px;
    
    border: 2px solid var(--couleur-bordure);
    border-radius: 15px;
    padding: 25px;
    margin: 0 15px 40px 15px;
    background-color: var(--couleur-grise-pale, #fdfdfd);
    box-shadow: 2px 2px 10px rgba(0,0,0,0.05);
}

/* ==========================================================================
   3. ITEMS ET LIENS (BOUTONS CLIQUABLES)
   ========================================================================== */
.item-grid {
    display: flex;
    height: 45px;
}

.item-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    
    text-decoration: none;
    background-color: #925fb9; /* Violet intermédiaire */
    color: white !important;
    
    padding: 0 15px;
    border-radius: var(--radius);
    border: 1px solid var(--couleur-bordure, #767676);
    
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.item-grid a:hover {
    background-color: var(--couleur-primaire-hover);
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}