/* ===== RÉINITIALISATION DE BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 0px;
/*    background-color: #e8f4fc;*/
}

.entete {
    padding: 0px;
    text-align: center;
    background-color:#ffdfdf;
    color:#BE123C;
    font-size:2.5rem;
}

.commentaire {
    font-size:1rem;
    font-style: italic;
    margin: 20px 0;
    padding-left : 20px;
    color: #4a5568;
}

.graphique {
    background-color: #ffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 20px auto; /* Centrage horizontal */
    padding: 20px;
    text-align: center;
}

/* ===== ADAPTATION POUR ÉCRAN PC (DESKTOP) ===== */
@media (min-width: 768px) {
    .graphique {
        width: 80%; /* Largeur fixe pour PC */
    }
}

/* ===== ADAPTATION POUR SMARTPHONE (MOBILE) ===== */
@media (max-width: 767px) {
    .graphique {
        width: 100%; /* Au moins 50% de la largeur */
        min-width: 300px; /* Largeur minimale pour éviter un affichage trop étroit */
    }
}
