/* ==========================================================================
   Styles Globaux pour les Infographies "Multimodal La Chaîne"
   ========================================================================== */

/* -- Styles de base et typographie -- */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f9;
}

/* -- Couleurs et Titres -- */
.main-title {
    color: #003f5c;
}

.section-title {
    color: #005f73;
}

.accent-color {
    color: #ff6347;
}

.bg-accent-color {
    background-color: #ff6347;
}

.key-figure {
    font-weight: 800;
    color: #003f5c;
}


/* -- Cartes d'information (Cards) -- */
.card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Aligne le contenu en haut */
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
}

.card-content {
    flex-grow: 1;
}


/* -- Cartes spéciales -- */
.info-card {
    background-color: #eef7f6;
    border-left: 5px solid #005f73;
}

.evolution-card {
    background-color: #fffbeb;
    border-left: 5px solid #f59e0b;
}


/* -- Icônes et Listes -- */
.icon {
    font-size: 4rem;
    line-height: 1;
    flex-shrink: 0; /* Empêche l'icône de se réduire */
}

.flag-list li {
    background-color: #eef7f6;
    padding: 0.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
}

/* -- NOUVEAU : Animation au défilement -- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* page de mise à jour */
        .update-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
            margin-bottom: 40px;
            border-radius: 8px; /* Coins arrondis pour le tableau */
            overflow: hidden; /* Pour que les coins arrondis soient visibles */
        }
        .update-table th, .update-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        .update-table th {
            background-color: #e2eafc; /* Couleur d'en-tête de tableau, à adapter */
            color: #333;
            font-weight: bold;
        }
        .update-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .update-table tr:hover {
            background-color: #f1f1f1;
        }
                .containermaj {
            max-width: 900px;
            margin: 20px auto;
            background: #fff;
            padding: 30px;
            border-radius: 12px; /* Coins arrondis */
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

