#hall-booking-form {
    /* max-width: 500px; */
    /* margin: 0 auto; */
}

#hall-booking-form div {
    margin-bottom: 1em;
}

#hall-booking-form label {
    font-weight: 500;
}

#hall-booking-form input,
#hall-booking-form select {
    width: 100%;
    padding: 6px;
}

#stripe-card-element {
    margin: 1em 0;
    min-height: 45px;
    transition: border-color 0.2s ease;
    display: block !important;
}

#stripe-card-element .StripeElement {
    padding: 0;
    height: 100%;
}

#stripe-card-element:focus-within {
    border-color: #635bff !important;
    box-shadow: 0 0 0 1px #635bff;
}

/* Stripe Element styling */
.StripeElement {
    padding: 12px;
    background: transparent;
}

.StripeElement--focus {
    border-color: #635bff;
}

.StripeElement--invalid {
    border-color: #dc3545;
}

.StripeElement--complete {
    border-color: #10b981;
}

#hall-booking-form-message {
    margin-top: 1em;
    color: #c00;
    padding: 12px;
    border-radius: 6px;
    background: #fee;
    border: 1px solid #fcc;
    display: none;
}

#hall-booking-form-message:not(:empty) {
    display: block;
}

#hall-booking-form-message.success {
    color: #155724;
    background: #d4edda;
    border-color: #c3e6cb;
}

#hall-booking-form button[type="submit"]:hover {
    background: #135e96 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(34, 113, 177, 0.3);
}

#hall-booking-form button[type="submit"]:active {
    transform: translateY(0);
}

#hall-booking-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #999 !important;
}

/* Hall Booking Form Two-Column Layout Fix */
.hall-booking-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
}

.hall-booking-flex>.hall-booking-calendar-col {
    flex: 1 1 520px;
    min-width: 320px;
    max-width: 700px;
}

.hall-booking-flex>.hall-booking-form-col {
    flex: 2 1 400px;
    min-width: 320px;
}

@media (max-width: 900px) {
    .hall-booking-flex {
        flex-direction: column;
    }

    .hall-booking-flex>.hall-booking-calendar-col,
    .hall-booking-flex>.hall-booking-form-col {
        max-width: 100%;
        min-width: 0;
    }
}

#hall-booking-calendar {
    min-height: 400px;
    background: #fff;
}