/* General Form Styling */
#tour-booking-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
}

#tour-booking-form label {
    display: block;
    margin-bottom: 10px;
}

#tour-booking-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
}

#tour-booking-form input[type="submit"] {
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
}

#tour-booking-form input[type="submit"]:hover {
    background-color: #005177;
}


/* Use FontAwesome icons for prev and next buttons */
.ui-datepicker .ui-datepicker-prev:before {
    content: "\f053"; /* FontAwesome's left chevron icon */
    font-family: "Font Awesome 5 Free"; /* Ensure correct font family */
    font-weight: 900; /* Set font weight to bold */
    font-size: 18px;
    color: #444; /* Adjust color as needed */
}

.ui-datepicker .ui-datepicker-next:before {
    content: "\f054"; /* FontAwesome's right chevron icon */
    font-family: "Font Awesome 5 Free"; /* Ensure correct font family */
    font-weight: 900; /* Set font weight to bold */
    font-size: 18px;
    color: #444; /* Adjust color as needed */
}





/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    border-radius: 8px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover, .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
