/* Fond général */
body {
    font-family: 'Jost', sans-serif !important;
    background: #f8f4ef !important;
}

/* Titres */
#events h3 {
    font-family: 'Playfair Display', serif !important;
    color: #8f6f5a !important;
    font-size: 28px !important;
}

/* Cartes prestations */
#events .selectedEvent,
#events .event {
    background: rgba(255,255,255,0.82) !important;
    border-radius: 18px !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05) !important;
    padding: 15px !important;
}

/* Boutons réservation */
#events input.reserve_time_btn,
#eventForm #save_button {
    background: #b08d57 !important;
    border-radius: 50px !important;
    border: none !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    transition: 0.3s ease;
}

/* Hover boutons */
#events input.reserve_time_btn:hover,
#eventForm #save_button:hover {
    background: #9b7746 !important;
    transform: translateY(-1px);
}

/* Créneaux horaires */
.timeline td.free_time {
    background: #f3e7da !important;
    border-radius: 8px !important;
}

/* Créneau sélectionné */
.timeline td.selected_time {
    background: #b08d57 !important;
    color: white !important;
}

/* Créneaux indisponibles */
.timeline td.reserved_time {
    background: #d8d8d8 !important;
    color: #888 !important;
}