/* body {
    font-family: 'Segoe UI', Arial, sans-serif;
    max-width: 800px;
    margin: 20px auto;
    padding: 0 15px;
    background-color: #f4ecfb;
    color: #313131;
}
h1 { text-align: center; color: #5b035b; }
h2 { color: #5b035b; border-bottom: 2px solid #d7b8f0; padding-bottom: 5px; margin-top: 30px; }
h3 { color: #7a307a; margin-bottom: 5px; margin-top: 15px; font-size: 1.1em; } 
*/

/* Message d'introduction */
.intro-text {
    background-color: #dec9f0; /* Couleur demandée */
    border-left: 4px solid #5b035b; /* Couleur demandée */
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 0.95em;
    color: #5b035b; /* Couleur demandée */
    line-height: 1.5;
}

/* Barre d'outils (Filtres et Vues) */
.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(91, 3, 91, 0.06);
}
.btn-group { display: flex; gap: 8px; align-items: center; }
.btn {
    padding: 8px 14px;
    border: 1px solid #d7b8f0;
    background: #fff;
    color: #5b035b;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.2s;
}
.btn.active, .btn:hover {
    background: #800080a1; 
    /* background: #5b035b; */
    color: #fff;
    border-color: #5b035b;
}
.label { font-weight: bold; color: #7a307a; font-size: 0.9em; }

/* Structure Bloc Evénement (Par Date) */
.event-container {
    background: #fff;
    margin-bottom: 8px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(91, 3, 91, 0.05);
    overflow: hidden;
}
.event-item {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.event-main { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* Bouton Plus d'infos */
.btn-info {
    background: none;
    border: none;
    color: #5b035b;
    cursor: pointer;
    font-size: 0.85em;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
}
.btn-info:hover { background: #f4ecfb; }

/* Zone de description dépliable */
.event-description-block {
    display: none; 
    padding: 12px 15px;
    background: #faf7fd;
    border-top: 1px dashed #d7b8f0;
    color: #4a024a;
    font-size: 0.95em;
    line-height: 1.4;
}

/* Mode "Par Activité" */
.activity-card {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(91, 3, 91, 0.05);
}
.activity-title { font-size: 1.3em; font-weight: bold; color: #5b035b; margin-bottom: 10px; }
.activity-desc { color: #4a024a; margin-bottom: 15px; line-height: 1.4; padding-left: 5px; border-left: 3px solid #d7b8f0; }
.date-occurence { list-style-type: none; padding: 0; }
.date-occurence li { padding: 4px 0; color: #5b035b; font-size: 0.95em; }

.badge {
    background: #d7b8f0;
    color: #5b035b;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75em;
    text-transform: uppercase;
}
.hidden { display: none !important; }