/* ===== Main Container Fix ===== */
#booking {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== Form Layout Fix ===== */
.booking-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
}

/* ===== Form Group Fix ===== */
.booking-form .form-group {
    flex: 1;
    min-width: 120px;
    padding: 0 5px;
    margin-bottom: 0;
}

/* Remove the vertical divider line */
.booking-form .form-group:after {
    display: none;
}

/* ===== Input Field Styling ===== */
.booking-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #f9f9f9;
    font-size: 14px;
    height: auto;
}

/* Date input with calendar icon */
.booking-form input[type="date"] {
    background: #f9f9f9 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23666" stroke-width="2"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"/><line x1="16" y1="2" x2="16" y2="6"/><line x1="8" y1="2" x2="8" y2="6"/><line x1="3" y1="10" x2="21" y2="10"/></svg>') no-repeat right 10px center;
    padding-right: 35px;
}

/* ===== Submit Button Fix ===== */
.booking-form .submit-btn {
    background: #0071c2;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
}

/* Search icon using Font Awesome (add FA to your site) */
.booking-form .submit-btn:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f002";
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 768px) {
    .booking-form {
        flex-direction: column;
    }
    
    .booking-form .form-group {
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }
    
    .booking-form .submit-btn {
        width: 100%;
    }
}