.eb-booking {
    --eb-accent: #4d6c8b;
    max-width: 680px;
    padding: 1.25rem;
    border: 1px solid #d8dee5;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(28, 42, 56, 0.06);
}

.eb-booking__field {
    margin-bottom: 1rem;
}

.eb-booking__field--hidden {
    display: none;
}

.eb-booking label,
.eb-booking legend {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.eb-booking input,
.eb-booking select,
.eb-booking textarea {
    box-sizing: border-box;
    width: 100%;
    min-height: 44px;
    padding: 0.6rem 0.7rem;
    border: 1px solid #b7c0c9;
    border-radius: 6px;
    background: #fff;
    color: #17202a;
}

.eb-booking input:focus,
.eb-booking select:focus,
.eb-booking textarea:focus {
    outline: 3px solid rgba(77, 108, 139, 0.22);
    border-color: var(--eb-accent);
}

.eb-booking__details {
    margin: 1.25rem 0;
    padding: 1rem;
    border: 1px solid #d8dee5;
    border-radius: 8px;
}

.eb-booking__submit {
    padding: 0.75rem 1.25rem;
    border: 0;
    border-radius: 6px;
    background: var(--eb-accent);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.eb-booking__submit:disabled {
    cursor: wait;
    opacity: 0.6;
}

.eb-booking__notice {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-left: 4px solid #2d7d46;
    background: #edf8f0;
}

.eb-booking__notice--error,
.eb-booking-error {
    border-left-color: #b42318;
    background: #fff1f0;
    color: #8a1c13;
}

