/* ============================================================
   AGENDA — Overlay + container
   ============================================================ */

body.agenda {
    background-image: url('https://images.unsplash.com/photo-1529692236671-f1f6cf9683ba?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body.agenda .overlay {
    background: rgba(255, 248, 220, 0.85);
    min-height: 100vh;
    padding: 40px 20px;
}

body.agenda .container {
    max-width: 700px;
    margin: auto;
    background: rgba(200, 255, 200, 0.85);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #8fbc8f;
    text-align: center;
}

/* ============================================================
   MENU DES MOIS
   ============================================================ */

.mois-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
}

.btn-mois {
    padding: 10px 14px;
    background: #4682b4;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #315f82;
    transition: background 0.2s ease;
}

.btn-mois:hover { background: #315f82; }

.btn-mois.avec-rdv {
    background: #2e8b57;
    border-color: #1f6b40;
}
.btn-mois.avec-rdv:hover { background: #256f46; }

/* ============================================================
   ÉVÉNEMENTS
   ============================================================ */

.rdv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f0fff0;
    border: 1px solid #8fbc8f;
    padding: 10px;
    margin: 8px 0;
    border-radius: 6px;
}

.rdv-texte {
    flex: 1;
    text-align: left;
    font-size: 1em;
}

.rdv-actions {
    display: flex;
    gap: 10px;
}
