@charset "UTF-8";
/* ═══════════════════════════════════════════════════════════════════════
   Slice TS.form-design-system (2026-04-29)
   ───────────────────────────────────────────────────────────────────────
   Brand-konsistent styling af alle public forms på tenant-website:
     • /forms/contact          (Kontakta oss)
     • /forms/booking-request  (Bokningsförfrågan)
     • /forms/activity-signup  (Aktivitets-tilmelding)
     • /forms/confirmation     (Tak-side efter submit)

   Erstatter den tidligere ad-hoc admin-styling (platforma-* admin-classes)
   med form-shells der matcher chub-* design-systemets tokens og rytmer
   fra home-page sektionerne. Alt brand-tinted via --tenant-* variabler så
   alle 4 brand-temaer farver formularerne korrekt (S6.1).

   Design-philosophy:
     • Hero-header (tenant-primary tintet) som matchende rest af site
     • Card-shell (chub-style) som section-cards
     • Step-indicators som visuel guide gennem multi-step
     • Radio/select-cards (ikke flade browser-radios)
     • Submit-button som chub-btn--primary
     ═════════════════════════════════════════════════════════════════════ */

/* ── Form-page wrapper ──────────────────────────────────────────────── */
/* Skal være full-bleed: layout har en :has(> .chub) regel der fjerner
   max-width + padding. Wrapper tilføjer både "chub" og "chub-form-page"
   så reglen aktiveres OG form-specific styling appliceres. */
.chub-form-page {
    background: var(--chub-surface-soft, #fafaf7);
    padding: 0 0 var(--chub-space-6, 64px) 0;
}

/* ── Form hero/header (full-bleed, matcher home-page hero-rytme) ────── */
.chub-form-hero {
    width: 100%;
    background: linear-gradient(
        180deg,
        var(--tenant-primary-soft, #f0f9f5) 0%,
        var(--chub-surface-soft, #fafaf7) 100%
    );
    border-bottom: 1px solid var(--tenant-primary-border, #d1ecdf);
    padding: var(--chub-space-6, 56px) var(--chub-space-3, 16px) var(--chub-space-6, 56px);
    margin-bottom: var(--chub-space-5, 40px);
}

.chub-form-hero-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.chub-form-hero-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 var(--chub-space-2, 12px) 0;
    line-height: 1.15;
    color: var(--tenant-primary-dark, #1b4332);
}

.chub-form-hero-subtitle {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    line-height: 1.55;
    margin: 0 auto;
    max-width: 640px;
    color: var(--chub-text-muted, #4b5563);
}

.chub-form-hero-reassurance {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: var(--chub-space-3, 16px);
    padding: 6px 14px;
    background: var(--tenant-primary, #2d6a4f);
    color: #fff;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
}

.chub-form-hero-reassurance-icon {
    color: #fff;
    font-weight: 700;
}

/* ── Form-card (proper section nedenunder hero — INGEN overlap) ─────
   Form-card fylder sin grid-cell helt (1fr i grid med aside). Solo-
   modifier sætter max-width 880px centreret når der ingen aside er. */
.chub-form-card {
    width: 100%;
    background: #fff;
    border: 1px solid var(--chub-border-mid, #e5e7eb);
    border-radius: 16px;
    padding: var(--chub-space-5, 32px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

/* Booking-form solo-mode (ingen aside) — centreret 880px så bredde-
   ergonomien for input-felter forbliver komfortabel. */
.chub-form-grid--solo > .chub-form-card {
    max-width: 880px;
    margin: 0 auto;
}

.chub-form-card-narrow {
    max-width: 640px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .chub-form-card {
        padding: var(--chub-space-6, 48px);
    }
}

/* ── 2-col grid: sidebar + form ──────────────────────────────────────
   Matcher chub-container's 1120px max-width så formen sidder visuelt
   ens artet med /site/kontakt og andre subpages. Sidebar er ALTID
   til stede — enten med tenant-kontakt-info (når public-settings sat)
   eller med default "Vad händer efter du skickat?"-expectation-card.
   Det fyldte content udnytter hele content-bredden i stedet for at
   formen sidder klemt midt i tomt rum. */
.chub-form-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    grid-template-areas: "form aside";
    gap: var(--chub-space-5, 32px);
    align-items: start;
}

.chub-form-grid > .chub-form-card { grid-area: form; }
.chub-form-grid > .chub-form-sidebar,
.chub-form-grid > .chub-form-aside { grid-area: aside; }

/* Booking-form har ingen sidebar — form fylder hele bredden */
.chub-form-grid--solo {
    grid-template-columns: 1fr;
    grid-template-areas: "form";
    max-width: 880px;
    margin: 0 auto;
}

@media (max-width: 880px) {
    .chub-form-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "form" "aside";
    }
}

/* ── Default expectation-sidebar (når tenant ikke har kontakt-info) ──
   Vises altid på contact-form så 1120px-bredden udnyttes. 3 trin med
   ikoner der sætter forventning til submit-flowet (referens-ID → 24h
   review → svar via e-post). Tenant-primary tinted. */
.chub-form-aside {
    background: #fff;
    border: 1px solid var(--chub-border-mid, #e5e7eb);
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 96px;
}

.chub-form-aside-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--tenant-primary-dark, #1b4332);
    margin: 0 0 16px 0;
}

.chub-form-aside-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: aside-step;
}

.chub-form-aside-step {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 12px;
    align-items: start;
    margin-bottom: 16px;
    counter-increment: aside-step;
}

.chub-form-aside-step:last-child {
    margin-bottom: 0;
}

.chub-form-aside-step::before {
    content: counter(aside-step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--tenant-primary-soft, #f0f9f5);
    color: var(--tenant-primary-dark, #1b4332);
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 2px;
}

.chub-form-aside-step-title {
    font-weight: 600;
    color: var(--chub-text-strong, #111827);
    font-size: 0.92rem;
    margin: 0 0 2px 0;
}

.chub-form-aside-step-desc {
    color: var(--chub-text-muted, #6b7280);
    font-size: 0.86rem;
    line-height: 1.45;
    margin: 0;
}

@media (max-width: 880px) {
    .chub-form-aside {
        position: static;
    }
}

/* ── Sidebar info-card (kontakt-page med tenant public settings) ─── */
.chub-form-sidebar {
    background: var(--tenant-primary-soft, #f0f9f5);
    border: 1px solid var(--tenant-primary-border, #d1ecdf);
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 96px;
}

.chub-form-sidebar-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--tenant-primary-dark, #1b4332);
    margin: 0 0 16px 0;
}

.chub-form-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.chub-form-sidebar-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.chub-form-sidebar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 50%;
    background: var(--tenant-primary, #2d6a4f);
    color: #fff;
}

.chub-form-sidebar-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--chub-text-muted, #6b7280);
    margin-bottom: 2px;
}

.chub-form-sidebar-value {
    color: var(--tenant-primary-dark, #1b4332);
    font-weight: 500;
    text-decoration: none;
}

.chub-form-sidebar-value:hover {
    text-decoration: underline;
}

.chub-form-sidebar-address {
    font-style: normal;
    color: var(--tenant-primary-dark, #1b4332);
    line-height: 1.45;
}

.chub-form-sidebar-social {
    padding-top: 16px;
    border-top: 1px solid var(--tenant-primary-border, #d1ecdf);
}

.chub-form-sidebar-social-list {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 8px 0 0 0;
}

.chub-form-sidebar-social-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: var(--tenant-primary-dark, #1b4332);
    border: 1px solid var(--tenant-primary-border, #d1ecdf);
    transition: all 0.15s ease;
}

.chub-form-sidebar-social-list a:hover,
.chub-form-sidebar-social-list a:focus-visible {
    background: var(--tenant-primary, #2d6a4f);
    color: #fff;
    border-color: var(--tenant-primary, #2d6a4f);
    transform: translateY(-1px);
    text-decoration: none;
    outline: none;
}

/* ── Step-section (booking-form 1-2-3) ──────────────────────────────── */
.chub-form-step {
    margin-bottom: var(--chub-space-6, 48px);
}

.chub-form-step:last-child {
    margin-bottom: 0;
}

.chub-form-step-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--chub-text-strong, #111827);
    margin: 0 0 var(--chub-space-3, 16px) 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chub-form-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--tenant-primary, #2d6a4f);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── Generic field wrapper ──────────────────────────────────────────── */
.chub-field {
    margin-bottom: var(--chub-space-3, 16px);
}

.chub-field:last-child {
    margin-bottom: 0;
}

/* 2-col side-by-side fields (Address + Apartment, FirstName + LastName) */
.chub-field-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--chub-space-3, 16px);
    margin-bottom: var(--chub-space-3, 16px);
}

.chub-field-row > .chub-field {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .chub-field-row {
        grid-template-columns: 1fr;
    }
}

.chub-label {
    display: block;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--chub-text-strong, #111827);
    margin-bottom: 6px;
}

.chub-label-required::after {
    content: " *";
    color: var(--chub-accent, #d62828);
}

.chub-input,
.chub-select,
.chub-textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 11px 14px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--chub-text, #1f2937);
    background: #fff;
    border: 1px solid var(--chub-border-mid, #d1d5db);
    border-radius: 8px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.chub-input::placeholder,
.chub-textarea::placeholder {
    color: var(--chub-text-muted, #9ca3af);
}

.chub-input:focus,
.chub-select:focus,
.chub-textarea:focus {
    outline: none;
    border-color: var(--tenant-primary, #2d6a4f);
    box-shadow: 0 0 0 3px var(--tenant-primary-soft, rgba(45, 106, 79, 0.18));
}

.chub-textarea {
    resize: vertical;
    min-height: 120px;
}

.chub-field-error {
    display: block;
    color: var(--chub-accent, #d62828);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ── Facility / slot card-radio (replaces flat radios) ──────────────── */
.chub-facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--chub-space-2, 12px);
    margin-bottom: var(--chub-space-3, 16px);
}

.chub-facility-card {
    position: relative;
    display: block;
    padding: 16px;
    background: #fff;
    border: 2px solid var(--chub-border-mid, #e5e7eb);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.chub-facility-card:hover {
    border-color: var(--tenant-primary, #2d6a4f);
}

.chub-facility-card-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.chub-facility-card-input:checked + .chub-facility-card-body,
.chub-facility-card:has(.chub-facility-card-input:checked) {
    border-color: var(--tenant-primary, #2d6a4f);
    background: var(--tenant-primary-soft, #f0f9f5);
}

.chub-facility-card:has(.chub-facility-card-input:checked) {
    box-shadow: 0 0 0 3px var(--tenant-primary-soft, rgba(45, 106, 79, 0.18));
}

.chub-facility-card-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--chub-text-strong, #111827);
    margin-bottom: 4px;
}

.chub-facility-card-type {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--tenant-primary, #2d6a4f);
    background: var(--tenant-primary-soft, #f0f9f5);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.chub-facility-card-desc {
    font-size: 0.88rem;
    color: var(--chub-text-muted, #6b7280);
    line-height: 1.45;
    margin-bottom: 6px;
}

.chub-facility-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    font-size: 0.82rem;
    color: var(--chub-text-muted, #6b7280);
    margin-top: 6px;
}

.chub-facility-card-price {
    color: var(--tenant-primary, #2d6a4f);
    font-weight: 600;
}

/* TS.facility-detail-sync (2026-04-30) — image on each facility card */
.chub-facility-card-media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
    background: var(--chub-bg-soft, #f3f4f6);
}

.chub-facility-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.chub-facility-card.is-selected {
    border-color: var(--tenant-primary, #2d6a4f);
    background: var(--tenant-primary-soft, #f0f9f5);
}

/* TS.facility-detail-sync (2026-04-30) — selected facility detail-card,
   prominent above the form-fields. Vises kun når admin ankommer fra et
   quick-link med ?facility=X. Image left, content right på desktop;
   stacked på mobil. */
.chub-facility-detail {
    display: grid;
    grid-template-columns: minmax(200px, 320px) 1fr;
    gap: 1.5rem;
    padding: 1.25rem;
    margin-bottom: 1.75rem;
    background: var(--tenant-primary-soft, #f0f9f5);
    border: 1px solid var(--tenant-primary-border, rgba(45, 106, 79, 0.18));
    border-radius: 12px;
    align-items: start;
}

.chub-facility-detail-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    background: var(--chub-surface, #fff);
}

.chub-facility-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.chub-facility-detail-eyebrow {
    margin: 0 0 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tenant-primary, #2d6a4f);
}

.chub-facility-detail-title {
    margin: 0 0 0.6rem;
    font-size: 1.45rem;
    line-height: 1.2;
    color: var(--chub-text-strong, #111827);
}

.chub-facility-detail-desc {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--chub-text-soft, #475569);
}

.chub-facility-detail-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem 1.25rem;
    margin: 0 0 1rem;
}

.chub-facility-detail-spec {
    margin: 0;
}

.chub-facility-detail-spec dt {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--chub-text-muted, #6b7280);
    margin: 0 0 0.15rem;
}

.chub-facility-detail-spec dd {
    margin: 0;
    font-size: 0.95rem;
    color: var(--chub-text-strong, #111827);
}

.chub-facility-detail-spec-note {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--chub-text-muted, #6b7280);
    margin-top: 2px;
}

.chub-facility-detail-locations {
    margin-top: 0.75rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--tenant-primary-border, rgba(45, 106, 79, 0.18));
}

.chub-facility-detail-locations-title {
    margin: 0 0 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--chub-text-soft, #475569);
}

.chub-facility-detail-locations-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.5rem 1rem;
}

.chub-facility-detail-location {
    font-size: 0.9rem;
    color: var(--chub-text-strong, #111827);
}

.chub-facility-detail-location-cap {
    color: var(--chub-text-muted, #6b7280);
    font-weight: 400;
}

.chub-facility-detail-location-desc {
    font-size: 0.8rem;
    color: var(--chub-text-muted, #6b7280);
    margin-top: 2px;
}

@media (max-width: 640px) {
    .chub-facility-detail {
        grid-template-columns: 1fr;
    }
    .chub-facility-detail-media {
        aspect-ratio: 16 / 10;
    }
}

/* ── Slot picker (time radios) ───────────────────────────────────────── */
.chub-slot-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
    margin-bottom: var(--chub-space-2, 12px);
}

.chub-slot-option {
    position: relative;
    display: block;
    padding: 12px 14px;
    background: #fff;
    border: 1.5px solid var(--chub-border-mid, #e5e7eb);
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s ease;
}

.chub-slot-option:hover {
    border-color: var(--tenant-primary, #2d6a4f);
}

.chub-slot-option-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.chub-slot-option:has(.chub-slot-option-input:checked) {
    border-color: var(--tenant-primary, #2d6a4f);
    background: var(--tenant-primary-soft, #f0f9f5);
    color: var(--tenant-primary-dark, #1b4332);
    font-weight: 500;
}

.chub-slot-option-label {
    font-size: 0.92rem;
}

.chub-slot-option-custom {
    grid-column: 1 / -1;
    border-style: dashed;
}

/* ── Form footer (submit-button + footnote) ─────────────────────────── */
.chub-form-footer {
    margin-top: var(--chub-space-5, 32px);
    padding-top: var(--chub-space-4, 24px);
    border-top: 1px solid var(--chub-border-mid, #e5e7eb);
    display: flex;
    flex-direction: column;
    gap: var(--chub-space-2, 12px);
    align-items: flex-start;
}

.chub-form-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--tenant-primary, #2d6a4f);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.chub-form-submit:hover {
    background: var(--tenant-primary-dark, #1b4332);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.chub-form-submit:active {
    transform: translateY(0);
}

.chub-form-footnote {
    font-size: 0.85rem;
    color: var(--chub-text-muted, #6b7280);
    line-height: 1.45;
    margin: 0;
}

/* ── Custom-time panel (collapsible inside booking-form) ────────────── */
.chub-form-custom-time {
    margin-top: var(--chub-space-3, 16px);
    padding: var(--chub-space-3, 16px);
    background: var(--chub-surface-soft, #fafaf7);
    border: 1px dashed var(--chub-border-mid, #e5e7eb);
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--chub-space-3, 16px);
}

.chub-form-custom-time[hidden] {
    display: none;
}

@media (max-width: 600px) {
    .chub-form-custom-time {
        grid-template-columns: 1fr;
    }
}

/* ── TS.member-onboarding #3d (2026-04-29) ──────────────────────────────
   Verified-resident context-card + verified-felt-tags + locked-input
   styling. Vises kun når besøgende er logget ind via Portal-cookie og
   ContactPageViewModel.IsVerifiedMember == true.

   Design-rationale:
   • Member-card sidder ABOVE form-felter (top-of-card position) så
     beboeren ser deres kontekst først, FØR de scanner felter
   • Brand-tinted baggrund (--tenant-primary-soft) signalerer "officiel/
     verifieret" uden at være distraherende
   • Verified-tag inline ved label markerer hvilke felter der er låst —
     ikke en error-state, ikke en warning; den er en "trust"-indikator
   • Locked-input bevarer normal højde + font så layout ikke skifter
     mellem anonym og member-mode; kun cursor + baggrund signalerer state */

.chub-form-member-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.95rem 1.1rem;
    margin-bottom: 1.25rem;
    border-radius: 0.75rem;
    background: var(--tenant-primary-soft, rgba(26, 83, 92, 0.08));
    border: 1px solid var(--tenant-primary-border, rgba(26, 83, 92, 0.18));
    color: var(--chub-text, #0f172a);
}

.chub-form-member-card-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tenant-primary, #1A535C);
    color: #ffffff;
}

.chub-form-member-card-body {
    flex: 1;
    min-width: 0;
}

.chub-form-member-card-title {
    margin: 0 0 0.2rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--tenant-primary, #1A535C);
}

.chub-form-member-card-meta {
    margin: 0 0 0.4rem;
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--chub-text, #0f172a);
}

.chub-form-member-card-meta strong {
    font-weight: 600;
}

.chub-form-member-card-divider {
    margin: 0 0.4rem;
    color: var(--chub-text-muted, #94a3b8);
    font-weight: 300;
}

.chub-form-member-card-hint {
    margin: 0;
    font-size: 0.82rem;
    color: var(--chub-text-soft, #475569);
    line-height: 1.45;
}

.chub-form-member-card-link {
    color: var(--tenant-primary, #1A535C);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.chub-form-member-card-link:hover {
    text-decoration: none;
}

/* Verified-tag: inline pill næstved label-tekst på pre-fyldte felter */
.chub-form-verified-tag {
    display: inline-block;
    margin-left: 0.4rem;
    padding: 0.08rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--tenant-primary, #1A535C);
    background: var(--tenant-primary-soft, rgba(26, 83, 92, 0.10));
    border: 1px solid var(--tenant-primary-border, rgba(26, 83, 92, 0.20));
    border-radius: 999px;
    vertical-align: middle;
    line-height: 1.3;
}

/* Locked-input: pre-fyldt felt der ikke kan ændres (readonly) */
.chub-input--locked {
    background-color: var(--chub-surface-alt, #f5f7f9);
    color: var(--chub-text-soft, #475569);
    cursor: not-allowed;
}

.chub-input--locked:focus {
    /* Ingen blå outline-glow på låste felter — de er ikke editable */
    outline: none;
    box-shadow: none;
    border-color: var(--chub-border, rgba(15, 23, 42, 0.08));
}

/* Mobile: stacker icon over content for compact layout på smal viewport */
@media (max-width: 480px) {
    .chub-form-member-card {
        flex-direction: column;
        gap: 0.5rem;
    }
    .chub-form-member-card-icon {
        width: 2rem;
        height: 2rem;
    }
}

/* ── Responsive: mobile-first cleanup ───────────────────────────────── */
@media (max-width: 768px) {
    .chub-form-hero {
        padding: var(--chub-space-5, 32px) var(--chub-space-2, 12px);
    }

    .chub-form-card {
        padding: var(--chub-space-3, 16px);
        border-radius: 12px;
    }

    .chub-facility-grid {
        grid-template-columns: 1fr;
    }

    .chub-form-sidebar {
        position: static;
    }
}
