.lew-booking-wrapper {
    background: #2095cc; /* Base color to match image if no gradient */
    background: linear-gradient(135deg, #1c75bc 0%, #2bd2df 100%);
    padding: 40px;
    font-family: Arial, sans-serif;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.lew-booking-wrapper *, .lew-booking-wrapper *:before, .lew-booking-wrapper *:after {
    box-sizing: border-box;
}

.lew-booking-wrapper label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 15px;
    color: #fff;
    margin-top: 15px; /* Spacing above labels */
}

.lew-booking-wrapper label .required,
.lew-booking-wrapper .lew-date-label .required {
    color: #ff0000;
}

.lew-booking-wrapper input[type="text"],
.lew-booking-wrapper input[type="email"],
.lew-booking-wrapper input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background-color: #e6e6e6;
    color: #333;
    font-size: 16px;
    border-radius: 0; /* Match screenshot design closely */
    box-shadow: none;
    outline: none;
}

.lew-booking-wrapper input[type="text"]::placeholder,
.lew-booking-wrapper input[type="email"]::placeholder,
.lew-booking-wrapper input[type="tel"]::placeholder {
    color: #888;
}

.lew-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    align-items: start;
}

.lew-col-half {
    grid-column: span 1;
}

.lew-col-full {
    grid-column: span 2;
}

/* Date Field Grid */
.lew-date-group {
    /* Half col */
}

.lew-date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    cursor: pointer; /* To suggest it's clickable for the calendar */
}

.lew-date-inputs .lew-input-col {
    position: relative;
}

.lew-date-inputs .lew-input-col label {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 5px;
}

.lew-date-inputs input {
    cursor: pointer; /* Highlight it's part of a datepicker */
    background-color: #e6e6e6; /* Same as others */
}

.lew-hint {
    font-size: 13px;
    opacity: 0.8;
    display: block;
    margin-top: 5px; /* Space from inputs */
    color: #a8e8f9;
}

/* Radio Group */
.lew-bedrooms-group label {
    margin-top: 15px;
}

.lew-radio-group {
    display: flex;
    gap: 20px;
    margin-top: 5px;
    margin-bottom: 0px;
    align-items: center;
}

.lew-radio-label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-weight: normal !important;
    font-size: 18px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    cursor: pointer;
}

.lew-radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

/* Submit Button */
.lew-form-submit {
    margin-top: 30px;
}

.lew-btn-submit {
    background: #1cb5e0;
    background: linear-gradient(to right, #257bc5, #1cb5e0);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: inset 0px 0px 10px rgba(255,255,255,0.2), 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s, background-color 0.2s;
    display: block;
}

.lew-btn-submit:hover {
    transform: translateY(-2px);
    background: linear-gradient(to right, #257bc5, #25c0e8);
}

.lew-btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Messages */
#lew-form-message {
    margin-top: 20px;
    font-weight: bold;
    padding: 15px;
    border-radius: 4px;
    display: none;
}

#lew-form-message.success {
    background-color: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #c3f7c3;
    display: block;
}

#lew-form-message.error {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #ffcccc;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lew-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    .lew-col-half,
    .lew-col-full {
        grid-column: span 1;
    }
}

#ui-datepicker-div {
    z-index: 1000500 !important;
}
