/* Booking Modal Styles */
.booking-modal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.booking-modal .modal-header {
    background-color: #2c4135;
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.booking-modal .btn-close {
    filter: invert(1);
}

.booking-modal .form-control {
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.booking-modal .form-control:focus {
    border-color: #2c4135;
    box-shadow: 0 0 0 0.2rem rgba(44, 65, 53, 0.25);
}

.booking-modal .btn-submit {
    background-color: #2c4135;
    color: white;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    font-weight: bold;
    border: none;
    transition: 0.3s;
}

.booking-modal .btn-submit:hover {
    background-color: #1e2d25;
    transform: translateY(-2px);
}

/* Flatpickr Customization */
.flatpickr-day.disabled {
    background-color: #f8d7da !important;
    color: #721c24 !important;
    text-decoration: line-through;
    cursor: not-allowed !important;
}
