/* =============================================
   Réservations Codep95 — Styles
   ============================================= */

body {
    background-color: #f8f9fa;
}

.seance-card {
    transition: box-shadow 0.2s;
}

.seance-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Calendrier mensuel */
.calendrier-mois {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-jour {
    min-height: 60px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 4px;
    background: white;
    font-size: 0.85rem;
}

.cal-jour.autre-mois {
    background: #f8f9fa;
    color: #adb5bd;
}

.cal-jour.aujourd-hui {
    border-color: #0d6efd;
    background: #e7f1ff;
}

.cal-pastille {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 2px;
}

.cal-pastille.fosse  { background-color: #0d6efd; }
.cal-pastille.lac    { background-color: #198754; }

/* Navbar */
.navbar-brand {
    font-size: 1.1rem;
}

/* Badges statut */
.badge { font-size: 0.8rem; }
