/* Basic styling for the Star Parking Booking form */
.star-parking-booking-wrapper {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 90%; /* Adjust as needed */
    margin: 5px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
#star-parking-booking-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Spacing between fields */
    align-items: flex-end; /* Align items to the bottom */
}
.spb-field-group {
    display: flex;
    flex-direction: column;
    min-width: 180px; /* Minimum width for fields */
    flex: 1; /* Allow fields to grow */
}
.spb-field-group label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}
.spb-field-group input[type="text"],
.spb-field-group select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    width: 100%; /* Make inputs fill their container */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}
/* .spb-submit-group {
    display: flex;
    align-items: flex-end;
    min-width: 150px;
} */
.spb-submit-group {
    display: flex;
    min-width: 150px;
    margin: 0 auto;
}
#spb-get-quote {
    background-color: 
#0d3b66; /* Dark blue from your image */
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    width: 100%;
}
#spb-get-quote:hover {
    background-color: 
#0a2d4d; /* Slightly darker on hover */
}
/* Styles for jQuery UI Datepicker */
.ui-datepicker {
    z-index: 9999 !important; /* Ensure datepicker is above other elements */
}
/* Responsive adjustments */
@media (max-width: 768px) {
    #star-parking-booking-form {
        flex-direction: column;
        align-items: stretch;
    }
    .spb-field-group, .spb-submit-group {
        min-width: unset;
        width: 100%;
    }
}