/* Apply styles to the form container */
.booking-form {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Apply styles to form labels */
.booking-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Apply styles to form inputs and textarea */
.booking-form input[type="text"],
.booking-form input[type="tel"],
.booking-form input[type="email"],
.booking-form input[type="date"],
.booking-form select,
.booking-form textarea {
    width: 100%; /* Use full width for these fields */
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Apply styles to form number inputs */
.booking-form input[type="number"] {
    width: 20%; /* Adjust width as needed */
    display: inline-block; /* Display in a line */
}

/* Apply styles to the submit button */
.booking-form input[type="submit"] {
    background-color: #4caf50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Style the submit button on hover */
.booking-form input[type="submit"]:hover {
    background-color: #45a049;
}

/* Apply styles to the form heading */
.booking-form h2 {
    text-align: center;
    color: #333;
}

/* Style error messages (optional, add styles based on your design) */
.booking-form span.error {
    color: red;
    font-size: 12px;
    margin-top: -10px;
    display: block;
}

/* Optional: Add media queries for responsive design */
@media screen and (max-width: 480px) {
    .booking-form input[type="text"],
    .booking-form input[type="tel"],
    .booking-form input[type="email"],
    .booking-form input[type="date"],
    .booking-form select,
    .booking-form textarea,
    .booking-form input[type="number"] {
        width: 100%; /* Use full width for smaller screens */
        display: block; /* Stack elements on smaller screens */
    }
}
