.booking-fieldset {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.7); /* translucent dark panel */
    max-width: 520px;
}

.booking-legend {
    font-size: 1.4rem;
    font-weight: 600;
    padding: 0 0.5rem;
}

.booking-date-row {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.date-input-wrapper {
    flex: 1;
}

.date-label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
    color: #e5e7eb;
}

/* Main date input styling */
.date-input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.65rem 2.5rem 0.65rem 0.8rem;
    font-size: 1rem;
    border-radius: 0.75rem;
    border: 1px solid #4f46e5; /* indigo accent */
    background: #020617; /* almost black */
    color: #f9fafb;
}

    /* Focus state */
    .date-input:focus-visible {
        outline: 2px solid #22d3ee; /* cyan focus ring */
        outline-offset: 2px;
        border-color: transparent;
    }

    /* Make the calendar icon white-ish and easier to click (WebKit/Chromium) */
    .date-input::-webkit-calendar-picker-indicator {
        cursor: pointer;
        filter: invert(1);
    }

    /* Remove inner borders/spinners for a cleaner look (WebKit) */
    .date-input::-webkit-inner-spin-button,
    .date-input::-webkit-clear-button {
        display: none;
    }

/* Help / error text */
.help {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #cbd5f5;
}

.error {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #fca5a5;
}

/* Button to match input height */
.btn.btn-primary {
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    background: #4f46e5;
    color: #f9fafb;
    cursor: pointer;
}

    .btn.btn-primary:hover {
        background: #4338ca;
    }
