/**
 * ========================================================
 * [ÉTAT : FINAL] Date : 22-05-2026 11:42:49
 * FICHIER : rapport_annuel.css
 * RÔLE : Styles pour l'affichage web du rapport annuel
 * Auteurs : Yvan Dubé & Gemini (IA Collaboratrice)
 * =========================================================
 */

.card {
    background: #fff;
    border: 1px solid var(--couleur-bordure);
    border-radius: var(--radius);
    padding: 20px;
    margin: 20px auto;
}

.report-table {
    width: 100%;
    border-collapse: collapse;
}

.report-table th {
    background-color: #E6E6FA; /* Lavande */
    color: #000;
    padding: 10px;
    border: 1px solid #ddd;
}

.report-table td {
    padding: 8px;
    border-bottom: 1px solid #eee;
}

/* Zèbre plus contrasté pour le web */
.report-table tbody tr:nth-child(even) {
    background-color: #F0F0F0; 
}

.align-right { text-align: right; }
.btn-excel { background-color: #28a745 !important; color: white !important; }