/* Booking form container styling */
#booking-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Styling for form elements */
#booking-form input[type="text"],
#booking-form input[type="email"],
#booking-form input[type="tel"],
#booking-form select {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#booking-form button {
    background-color: #2b2d42;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

#booking-form button:hover {
    background-color: #44465c;
}

/* Form heading and instructions */
#booking-form h2 {
    text-align: center;
    color: #333;
    font-family: 'Yeseva One', sans-serif; /* Apply Yeseva One font */
    font-size: 50px; /* Font size */
    line-height: 1.2em; /* Line height */
}

#booking-form p {
    font-size: 16px;
    color: #666;
    padding: 0 20px;
}

#booking-response {
    padding: 10px;
    margin-top: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    color: #333;
}

/* Ensure proper spacing and styling for form elements */
#booking-form label {
    font-weight: bold;
    margin-top: 10px;
}

#booking-form input,
#booking-form select,
#booking-form button {
    margin-top: 5px;
}

select option[disabled] {
    color: red; /* Just an example to make sure disabled options are visible */
    font-weight: bold;
}


