body {
    font-family: Arial, sans-serif;
    background:#fafafa;
    margin:0;
    padding:5%;
    padding-left:10%;
    padding-right:10%;
}



/* Filtres */
.btnFiltrer {
    font-size: 16px;
    background-color: #ed4933 !important; 
    margin: 20px 0;
    padding: 12px 25px;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

h3 {
    text-align: center;
    color: #ed4933 !important;
}

.filter-group {
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin:20px 0;
}

.filter-button {
    padding:10px 18px;
    background:#eeeeee;
    border-radius:30px;
    border:none;
    cursor:pointer;
    font-size:15px;
    transition:0.2s;
    color: #000;
}

.filter-button.active {
    background:#ed4933;
    color:white;
    box-shadow:0 4px 12px rgba(215,52,158,0.4);
}

/* Modal */
#temoignagesModal {
    display:none;
    position:fixed;
    top:0; left:0;
    width:100%; height:100%;
    background:rgba(0,0,0,0.6);
    z-index:1000;
    overflow-y:auto;
}

.modal-content {
    background:#fff;
    max-width:700px;
    margin:5% auto;
    padding:20px;
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,0.3);
}

.temoignage-card {
    padding:12px;
    border-radius:7px;
    background:#f7f7f7;
    border-left:4px solid #ed4933;
}

.temoignage-prenom {
    font-weight:bold;
    color:#ed4933;
}

.temoignage-tags {
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
    background: #ed4933;
    color: #fff;
    font-weight: 500;
}

.tag.motif {
    background: #f39c12; /* couleur différente pour distinguer */
}

.tag.service {
    background: #3498db;
}

.tag.temoignage_pour {
    background: #2ecc71;
}

#complaintChart {
    max-height: 100%; 
    width: 100%;
    margin: 0 auto;

}

/* Styles pour écrans mobiles */
@media (max-width: 768px) {
    .filter-button {
        padding: 14px 24px;  /* plus d’espace pour toucher facilement */
        font-size: 18px !important;      /* texte plus gros */
    }
    #btnFiltrer {
        font-size: 18px;
    
}
}