/* Booking detail styles aligned with public theme */
.booking-card {
    position: relative;
    overflow: hidden;
}

.booking-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 171, 117, 0.05), rgba(5, 30, 64, 0.05));
    pointer-events: none;
}

.booking-card > * {
    position: relative;
    z-index: 1;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #0f265c;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.form-help {
    margin: 0 0 0.35rem;
    color: #5b6b7a;
    font-size: 0.85rem;
    line-height: 1.4;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    border: 1px solid #cdd9e7;
    border-radius: 0.75rem;
    padding: 0.75rem 0.9rem;
    transition: all 0.2s ease;
    background: #ffffff;
    color: #0f265c;
    display: block;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 2px 10px rgba(15, 38, 92, 0.05);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: #c9ab75;
    box-shadow: 0 0 0 3px rgba(201, 171, 117, 0.2), 0 6px 18px rgba(15, 38, 92, 0.08);
    outline: none;
    background: #fff;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-field select,
.form-field input,
.form-field textarea {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-field select {
    background-image: linear-gradient(45deg, transparent 50%, #0f265c 50%),
        linear-gradient(135deg, #0f265c 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 2px), calc(100% - 15px) calc(50% - 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 2.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-field .errorlist {
    margin-top: 0.35rem;
    color: #b91c1c;
    font-size: 0.875rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #8fa0b6;
}
