/* Styles généraux */
.reservation-form {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: auto;
}

/* Champ de saisie de date */
#reservation-date {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Bouton réserver */
button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Dates indisponibles en rouge */
.ui-datepicker-unselectable .ui-state-default {
    background: #ff4d4d !important;
    color: white !important;
    text-decoration: line-through;
    cursor: not-allowed;
}

/* Ajustement du conteneur */
#calendar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-radius: 10px;
}
