/* ============================================================
   Termintool v3 – Design-System v2 (Feedback-Runde A2)
   Verbindliche Referenz: referenz/mockup-dashboard-v2.html
   Eine zentrale Datei. Tenant-Branding: --brand ändern
   (alle abgeleiteten Töne entstehen per color-mix).
   Font: Manrope · Icons: Tabler (outline)
   ============================================================ */

:root {
    /* Brand – die EINE Stellschraube fürs Tenant-CI */
    --brand: #1E3A5F;   /* Nachtblau = Termintool-Identität (Redesign 11.08.2026, von Joern freigegeben); Tenant-Farbe überschreibt */
    --brand-deep: color-mix(in srgb, var(--brand) 82%, #000);
    --brand-ink:  color-mix(in srgb, var(--brand) 61%, #000);
    --brand-soft: color-mix(in srgb, var(--brand) 10%, #fff);
    --brand-wash: color-mix(in srgb, var(--brand) 4%, #fff);
    --on-brand: #FFFFFF;
    --on-brand-dim: rgba(255, 255, 255, .9); /* ≥4.5:1 auf --brand */

    --ink: #101B2D; --ink-2: #4A576B; --ink-3: #8B96A9;
    --line: #E4E9F1; --canvas: #F5F7FB; --surface: #fff;

    --ok: #0E8A5F; --ok-soft: #E2F5EC; --ok-text: #0B6E4C;
    --warn: #9A6700; --warn-soft: #FFF3DC;
    --danger: #C4314B; --danger-soft: #FBE7EB;
    --muted-soft: #EEF1F6;

    --r-lg: 18px; --r-md: 13px;
    --sh-sm: 0 1px 2px rgba(16,27,45,.05), 0 1px 3px rgba(16,27,45,.05);
    --sh-md: 0 10px 30px -10px rgba(16,27,45,.18);

    --side-bg: #0F1D33;

    /* Legacy-Aliase (Illustrationen/ältere Klassen) */
    --tt-primary: var(--brand);
    --tt-primary-soft: var(--brand-soft);
    --tt-free: var(--ok); --tt-free-bg: var(--ok-soft); --tt-free-border: color-mix(in srgb, var(--ok) 25%, #fff);
    --tt-taken: var(--ink-3); --tt-taken-bg: var(--muted-soft); --tt-taken-border: var(--line);
    --tt-waitlist: var(--warn); --tt-waitlist-bg: var(--warn-soft); --tt-waitlist-border: color-mix(in srgb, var(--warn) 30%, #fff);
}

/* ---------- Basis ---------- */

body {
    font-family: Manrope, system-ui, -apple-system, 'Segoe UI', sans-serif;
    background: var(--canvas);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-weight: 800; letter-spacing: -.01em; color: var(--ink); }

a { color: var(--brand); font-weight: 600; }
a:hover { color: var(--brand-deep); }

.ti { line-height: 1; vertical-align: -0.1em; }

/* ---------- Fokus & Skip-Link ---------- */

:focus-visible {
    outline: 3px solid var(--brand);
    outline-offset: 2px;
    border-radius: 6px;
}
/* Auf dunklen Flächen: weißer Fokus-Ring */
.band :focus-visible, .side :focus-visible { outline-color: #fff; }

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 2000;
    padding: .6rem 1.1rem;
    background: var(--ink);
    color: #fff;
    border-radius: 0 0 12px 0;
    text-decoration: none;
    font-weight: 700;
}
.skip-link:focus { left: 0; top: 0; color: #fff; }

/* ---------- Reduced Motion ---------- */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ---------- Shell-Layout ---------- */

.shell { display: flex; min-height: 100vh; }
.content { flex-grow: 1; min-width: 0; display: flex; flex-direction: column; }

/* ---------- Sidebar (Tinte) ---------- */

.side {
    --bs-offcanvas-bg: var(--side-bg);
    --bs-offcanvas-width: 280px;
    width: 236px;
    flex-shrink: 0;
    color: #B7C3D8;
}
/* !important nötig: Bootstrap setzt bei .offcanvas-lg ab dem lg-Breakpoint
   background-color: transparent !important auf Container UND .offcanvas-body
   und nullt das Body-Padding – sonst weiße Sidebar mit heller Textpalette. */
.side,
.side .offcanvas-body {
    background-color: var(--side-bg) !important;
}
.side .offcanvas-body {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    height: 100%;
    flex-grow: 1;
    padding: 1.1rem .85rem;
}
@media (min-width: 992px) {
    .side { position: sticky; top: 0; height: 100vh; overflow-y: auto; }
}
.side .offcanvas-header { color: #fff; }

.logo { display: flex; align-items: center; gap: .6rem; padding: .2rem .45rem; }
.logo b { font-weight: 800; font-size: 1.08rem; color: #fff; letter-spacing: -.01em; }
.logo svg { flex-shrink: 0; }

.nav-side { display: flex; flex-direction: column; gap: 2px; font-size: .9rem; }
.nav-side a {
    display: flex; align-items: center; gap: .65rem;
    color: #A6B4CC; padding: .58rem .7rem;
    border-radius: 10px; font-weight: 600; position: relative;
    text-decoration: none;
}
.nav-side a .ti { font-size: 1.1rem; opacity: .9; width: 20px; text-align: center; flex-shrink: 0; }
.nav-side a:hover { background: rgba(255,255,255,.07); color: #fff; }
.nav-side a[aria-current] { background: rgba(255,255,255,.1); color: #fff; }
.nav-side a[aria-current]::before {
    content: ""; position: absolute; left: -8px; top: 9px; bottom: 9px;
    width: 3px; border-radius: 3px; background: var(--brand);
}

.side .foot {
    margin-top: auto; font-size: .74rem; color: #8B9BB5;
    padding: .6rem .45rem; border-top: 1px solid rgba(255,255,255,.08);
}
.side .foot b { color: #C6D2E4; }

/* ---------- Topbar (Mandanten-Kontext) ---------- */

.top {
    display: flex; align-items: center; gap: .8rem;
    padding: .7rem 1.6rem;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 1030;
}
@media (max-width: 575.98px) { .top { padding: .7rem .8rem; gap: .5rem; } }

.icon-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 99px;
    border: 1px solid var(--line); background: var(--surface);
    color: var(--ink-2); cursor: pointer; font-size: 1.05rem; flex-shrink: 0;
}
.icon-btn:hover { background: var(--brand-wash); color: var(--brand-ink); }

.tenant {
    display: flex; align-items: center; gap: .55rem;
    font-weight: 700; font-size: .92rem; color: var(--ink);
    padding: .4rem .8rem; border: 1px solid var(--line);
    border-radius: 99px; background: var(--surface); cursor: pointer;
}
.tenant .sw {
    width: 22px; height: 22px; border-radius: 7px;
    background: var(--brand); display: grid; place-items: center;
    color: #fff; font-size: .6rem; font-weight: 800;
}
.tenant .ti { font-size: .85rem; color: var(--ink-3); }

.search {
    flex: 1; max-width: 380px;
    display: flex; align-items: center; gap: .5rem;
    background: var(--canvas); border: 1px solid var(--line);
    border-radius: 99px; padding: .45rem .9rem;
    color: var(--ink-3); font-size: .88rem;
}
.search input { border: 0; background: none; font: inherit; width: 100%; color: var(--ink); }
.search input:focus { outline: 0; }

.lang { display: flex; gap: .15rem; font-size: .84rem; font-weight: 700; }
.lang a { padding: .3rem .55rem; border-radius: 99px; color: var(--ink-3); text-decoration: none; }
.lang a[aria-current] { color: var(--brand-ink); background: var(--brand-soft); }

.avatar {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--brand); color: #fff;
    display: grid; place-items: center;
    font-size: .76rem; font-weight: 800;
}
.avatar-btn { border: 0; background: none; padding: 0; border-radius: 50%; }

/* ---------- Farbiger Kopfbereich (Band) ---------- */

.band {
    background: linear-gradient(120deg, var(--brand-deep) 0%, var(--brand) 65%, color-mix(in srgb, var(--brand) 80%, #fff) 100%);
    color: var(--on-brand);
    padding: 1.7rem 0 4.4rem;   /* horizontales Padding trägt der .page-container */
    position: relative;
    overflow: hidden;
}

/* Einheitlicher Seitencontainer (B1 #3): Band-Inhalt und Main-Content zentriert
   auf gemeinsamer Linkskante; Band-Hintergrund bleibt full-width. */
.page-container {
    max-width: 1440px;
    width: 100%;
    margin-inline: auto;
    padding-inline: 2rem;
}
@media (min-width: 1800px) { .page-container, .main { max-width: 1560px; } }
@media (max-width: 920px)  { .page-container { padding-inline: 1rem; } }
.band::after {
    content: ""; position: absolute; right: -60px; top: -80px;
    width: 280px; height: 280px; border-radius: 50%;
    background: rgba(255,255,255,.08);
    pointer-events: none;   /* Deko darf nie Klicks abfangen */
}
.band h1 { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; color: #fff; }
.band p { color: var(--on-brand-dim); font-size: .92rem; margin: .15rem 0 0; }
.band-row {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1;
}
@media (max-width: 920px) { .band { padding: 1.4rem 0 4.2rem; } }

/* Band-Variante: öffentliche Seiten (Kopfzeile im Band) */
.band-top {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; margin-bottom: 1.2rem; position: relative; z-index: 1;
}
.logo-onband { display: flex; align-items: center; gap: .6rem; color: #fff; text-decoration: none; }
.logo-onband b { font-weight: 800; font-size: 1.05rem; color: #fff; }
.logo-onband .dim { color: var(--on-brand-dim); font-weight: 600; font-size: .88rem; }
.logo-onband:hover { color: #fff; }
.band .lang a { color: var(--on-brand-dim); }
.band .lang a[aria-current] { color: var(--brand-ink); background: #fff; }

/* Hero-Variante (Onboarding): größer, zweiter Deko-Kreis */
.band-hero { padding-bottom: 5rem; }
.band-hero::before {
    content: ""; position: absolute; left: -90px; bottom: -120px;
    width: 260px; height: 260px; border-radius: 50%;
    background: rgba(255,255,255,.06);
    pointer-events: none;   /* Deko darf nie Klicks abfangen */
}
.band-hero h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.band-hero .lead-hero { font-size: 1.02rem; max-width: 640px; }

/* ---------- Main: ragt ins Band ---------- */

.main {
    padding: 0 2rem 3rem;
    max-width: 1440px;          /* B1 #3: gleiche Breite wie .page-container */
    width: 100%;
    margin-inline: auto;
    margin-top: -3.1rem;
    position: relative;
    /* KEIN z-index hier! Er erzeugte einen Stacking-Context, der ALLE
       Bootstrap-Modals in .main unter den body-verankerten Backdrop (1050)
       sperrte – Klicks ins Modal trafen den Backdrop und schlossen es.
       Überlappung über dem Band regelt die DOM-Reihenfolge (.main folgt .band). */
}
.main-public { max-width: 900px; margin-left: auto; margin-right: auto; }
@media (max-width: 920px) { .main { padding: 0 1rem 3rem; } }

/* ---------- Buttons (Pills) ---------- */

.btn-v2 {
    display: inline-flex; align-items: center; gap: .5rem;
    font: 700 .9rem Manrope, sans-serif;
    border: 0; border-radius: 99px;
    padding: .66rem 1.3rem; cursor: pointer;
    text-decoration: none;
}
.btn-white { background: #fff; color: var(--brand-ink); box-shadow: 0 3px 12px -3px rgba(0,0,0,.25); }
.btn-white:hover { background: var(--brand-wash); color: var(--brand-ink); }
.btn-p { background: var(--brand); color: #fff; box-shadow: 0 3px 10px -3px color-mix(in srgb, var(--brand) 60%, transparent); }
.btn-p:hover { background: var(--brand-deep); color: #fff; }
.btn-s { background: var(--brand-soft); color: var(--brand-ink); }
.btn-s:hover { background: color-mix(in srgb, var(--brand) 18%, #fff); color: var(--brand-ink); }
.btn-ghost { background: transparent; color: var(--ink-2); }
.btn-ghost:hover { background: var(--muted-soft); color: var(--ink); }
.btn-lg-v2 { padding: .85rem 1.6rem; font-size: 1rem; }

/* Bootstrap-Buttons an v2 angleichen (Modals, Formulare) */
.btn { border-radius: 99px; font-weight: 700; font-family: Manrope, sans-serif; }
.btn-primary {
    --bs-btn-bg: var(--brand); --bs-btn-border-color: var(--brand);
    --bs-btn-hover-bg: var(--brand-deep); --bs-btn-hover-border-color: var(--brand-deep);
    --bs-btn-active-bg: var(--brand-deep); --bs-btn-active-border-color: var(--brand-deep);
    --bs-btn-disabled-bg: var(--brand); --bs-btn-disabled-border-color: var(--brand);
    box-shadow: 0 3px 10px -3px color-mix(in srgb, var(--brand) 60%, transparent);
}
.btn-outline-primary {
    --bs-btn-color: var(--brand-ink); --bs-btn-border-color: transparent; --bs-btn-bg: var(--brand-soft);
    --bs-btn-hover-bg: color-mix(in srgb, var(--brand) 18%, #fff); --bs-btn-hover-color: var(--brand-ink); --bs-btn-hover-border-color: transparent;
    --bs-btn-active-bg: var(--brand-soft); --bs-btn-active-color: var(--brand-ink); --bs-btn-active-border-color: transparent;
}
.btn-outline-secondary {
    --bs-btn-color: var(--ink-2); --bs-btn-border-color: var(--line); --bs-btn-bg: var(--surface);
    --bs-btn-hover-bg: var(--muted-soft); --bs-btn-hover-color: var(--ink); --bs-btn-hover-border-color: var(--line);
    --bs-btn-active-bg: var(--muted-soft); --bs-btn-active-color: var(--ink); --bs-btn-active-border-color: var(--line);
}

/* ---------- Karten ---------- */

.card, .tt-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
}
.card.lift, .tt-card.lift { box-shadow: var(--sh-md); border-color: transparent; }

.eyebrow {
    font-size: .7rem; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; color: var(--brand);
}

/* ---------- Tagesverlauf ---------- */

.today { padding: 1.15rem 1.35rem 1.25rem; margin-bottom: 1.1rem; }
.today .h { display: flex; align-items: baseline; gap: .7rem; margin-bottom: .9rem; flex-wrap: wrap; }
.today h2 { font-size: 1.08rem; font-weight: 800; }
.today .h > span:last-child { margin-left: auto; color: var(--ink-3); font-size: .82rem; font-weight: 600; }
.hours { display: flex; justify-content: space-between; font-size: .7rem; color: var(--ink-3); font-weight: 600; margin-bottom: .35rem; }
.track {
    position: relative; height: 58px; border-radius: 12px;
    background: var(--brand-wash);
    background-image: repeating-linear-gradient(90deg, rgba(16,27,45,.06) 0 1px, transparent 1px calc(100%/10));
}
.now { position: absolute; top: -5px; bottom: -5px; left: 31%; width: 2px; background: var(--danger); border-radius: 2px; z-index: 3; }
.now::after { content: "jetzt"; position: absolute; top: -1.2rem; left: -.9rem; font-size: .66rem; font-weight: 800; color: var(--danger); }
.ev {
    position: absolute; top: 7px; height: 44px; border: 0; border-radius: 11px;
    background: #fff; box-shadow: 0 2px 8px -1px rgba(16,27,45,.16);
    padding: .28rem .6rem .28rem .55rem;
    font: 700 .73rem Manrope, sans-serif; color: var(--ink); text-align: left;
    overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.ev::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); margin-right: .35rem; vertical-align: 1px; }
.ev small { display: block; font-weight: 600; color: var(--ink-3); font-size: .66rem; padding-left: .78rem; }
.ev.warn::before { background: #E39A00; }
.ev.done { opacity: .55; }
.ev.done::before { background: #B9C2D2; }
.legend { display: flex; gap: 1.1rem; margin-top: .75rem; font-size: .74rem; font-weight: 600; color: var(--ink-2); flex-wrap: wrap; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: .3rem; vertical-align: 1px; }

/* ---------- KPI ---------- */

.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.4rem; }
@media (max-width: 1000px) { .kpis { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .kpis { grid-template-columns: 1fr; } }
.kpi { padding: .9rem 1.1rem; }
.kpi .l { font-size: .76rem; color: var(--ink-2); font-weight: 600; }
.kpi .v { font-size: 1.7rem; font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: -.02em; margin: .05rem 0; }
.kpi .d { font-size: .73rem; font-weight: 700; }
.kpi .d.up { color: var(--ok); }
.kpi .d.dn { color: var(--danger); }

/* ---------- Listen-Karte: Chips + zweizeilige Zeilen ---------- */

.list .chead {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding: 1.1rem 1.35rem .6rem; flex-wrap: wrap;
}
.list h2 { font-size: 1.08rem; font-weight: 800; margin: 0; }

.chips { display: flex; gap: .5rem; flex-wrap: wrap; padding: 0 1.35rem .8rem; align-items: center; }
.chip {
    display: inline-flex; align-items: center; gap: .4rem;
    font: 700 .78rem Manrope, sans-serif;
    background: var(--brand-soft); color: var(--brand-ink);
    border: 0; border-radius: 99px;
    padding: .35rem .5rem .35rem .8rem; cursor: pointer;
}
.chip .x {
    width: 17px; height: 17px; border-radius: 50%;
    background: rgba(255,255,255,.85);
    display: grid; place-items: center;
    font-size: .68rem; color: var(--brand-ink);
}
.chip.add { background: transparent; border: 1.5px dashed var(--line); color: var(--ink-3); padding: .35rem .8rem; }
.chip.add:hover { border-color: var(--brand); color: var(--brand-ink); }
.chip.chip-static { cursor: default; padding: .35rem .8rem; }
.chip-hint { font-size: .74rem; color: var(--ink-2); align-self: center; font-weight: 600; }

.rows { list-style: none; margin: 0; padding: 0; }
.rows li {
    display: grid;
    grid-template-columns: 1fr auto auto auto auto;
    gap: 1.2rem; align-items: center;
    padding: .8rem 1.35rem;
    border-top: 1px solid var(--line);
}
.rows li:hover { background: var(--brand-wash); }
.rows .t { font-weight: 800; font-size: .94rem; display: block; }
.rows .t a { color: inherit; text-decoration: none; }
.rows .s { display: block; font-size: .77rem; color: var(--ink-2); font-weight: 600; }
.rows .date { font-variant-numeric: tabular-nums; font-weight: 600; font-size: .86rem; color: var(--ink-2); white-space: nowrap; }
.cap { display: flex; align-items: center; gap: .5rem; font-variant-numeric: tabular-nums; font-size: .85rem; font-weight: 700; }
.cap .mini { width: 54px; height: 6px; border-radius: 3px; background: var(--muted-soft); overflow: hidden; }
.cap .mini i { display: block; height: 100%; background: var(--brand); border-radius: 3px; }
@media (max-width: 760px) {
    .rows li { grid-template-columns: 1fr auto auto; }
    .rows .date, .rows .cap { display: none; }
}

/* ---------- Status-Badges (Pill + Punkt) ---------- */

.badge-status, .pill-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .74rem; font-weight: 800;
    border-radius: 99px; padding: .24rem .7rem;
    white-space: nowrap;
}
.badge-status::before, .pill-badge::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor;
}
.badge-aktiv,     .b-ok    { background: var(--ok-soft); color: var(--ok-text); }
.badge-versendet, .b-info  { background: var(--brand-soft); color: var(--brand-ink); }
.badge-entwurf,
.badge-abgeschlossen, .b-muted { background: var(--muted-soft); color: var(--ink-2); }
.badge-storniert, .b-danger { background: var(--danger-soft); color: var(--danger); }
.b-warn { background: var(--warn-soft); color: var(--warn); }
.pill-badge.no-dot::before { content: none; }

/* ---------- Slots (Buchungsseite): Chips mit Punkt-Status ---------- */

.slot-chip {
    display: inline-flex; align-items: center; gap: .5rem;
    border-radius: 99px; padding: .55rem 1.05rem;
    font: 700 .88rem Manrope, sans-serif;
    border: 1.5px solid var(--line);
    background: var(--surface); color: var(--ink);
    cursor: pointer;
    transition: transform .12s, box-shadow .12s, border-color .12s;
    font-variant-numeric: tabular-nums;
}
.slot-chip .dot { margin-right: 0; flex-shrink: 0; }
.slot-chip .slot-label { font-weight: 600; color: var(--ink-2); font-size: .8rem; }

.slot-card--free .dot { background: var(--ok); }
.slot-card--free:hover, .slot-card--free:focus-visible {
    border-color: var(--ok);
    box-shadow: 0 4px 14px -4px rgba(14,138,95,.4);
    transform: translateY(-1px);
}
.slot-card--taken { background: var(--muted-soft); color: var(--ink-2); cursor: not-allowed; border-color: transparent; }
.slot-card--taken .dot { background: #B9C2D2; }
.slot-card--waitlist .dot { background: #E39A00; }
.slot-card--waitlist:hover, .slot-card--waitlist:focus-visible {
    border-color: var(--warn);
    box-shadow: 0 4px 14px -4px rgba(154,103,0,.35);
    transform: translateY(-1px);
}

.slot-day { margin-top: 1.3rem; }
.slot-day h3 { font-size: .82rem; font-weight: 800; color: var(--ink-2); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .6rem; }
.slot-wrap { display: flex; flex-wrap: wrap; gap: .55rem; }

/* ---------- Wizard: Stepper im Band ---------- */

.stepper { display: flex; gap: .5rem; flex-wrap: wrap; list-style: none; margin: 1.1rem 0 0; padding: 0; position: relative; z-index: 1; }
.stepper .step {
    display: inline-flex; align-items: center; gap: .5rem;
    border-radius: 99px; padding: .4rem .95rem .4rem .5rem;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff; font: 700 .84rem Manrope, sans-serif;
}
.stepper .step .step-num {
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(255,255,255,.25); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: .78rem; flex-shrink: 0;
}
.stepper .step[aria-current="step"] { background: #fff; border-color: #fff; color: var(--brand-ink); }
.stepper .step[aria-current="step"] .step-num { background: var(--brand); color: #fff; }
.stepper .step.step-done { opacity: .85; }
.stepper .step.step-done .step-num { background: #fff; color: var(--ok-text); }

.type-card {
    border: 2px solid var(--line);
    border-radius: var(--r-md);
    padding: 1rem; cursor: pointer; height: 100%;
    background: var(--surface);
    transition: border-color .12s, box-shadow .12s;
}
.type-card:hover { border-color: color-mix(in srgb, var(--brand) 40%, #fff); }
.type-card.selected { border-color: var(--brand); background: var(--brand-wash); }
.type-card:has(input:focus-visible) { outline: 3px solid var(--brand); outline-offset: 2px; }

.slot-preview-grid { display: flex; flex-wrap: wrap; gap: .5rem; }
.slot-preview {
    display: inline-flex; align-items: center; gap: .45rem;
    border: 1.5px solid var(--line); border-radius: 99px;
    background: var(--surface); color: var(--ink);
    padding: .4rem .9rem;
    font: 700 .8rem Manrope, sans-serif;
    cursor: pointer; font-variant-numeric: tabular-nums;
}
.slot-preview::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ok); flex-shrink: 0; }
.slot-preview:hover { border-color: var(--brand); }
.slot-preview.blocked {
    background: var(--muted-soft); color: var(--ink-3);
    border-color: transparent; text-decoration: line-through;
}
.slot-preview.blocked::before { background: #B9C2D2; }

/* ---------- Segmentierte Tabs (Pills) ---------- */

.seg {
    display: inline-flex; background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 99px; padding: 4px; gap: 2px;
    box-shadow: var(--sh-md);
}
.seg .nav-link {
    border: 0; border-radius: 99px;
    font: 700 .88rem Manrope, sans-serif;
    color: var(--ink-2); padding: .48rem 1.15rem;
    white-space: nowrap;
}
.seg .nav-link:hover { color: var(--ink); background: var(--muted-soft); }
.seg .nav-link.active { background: var(--brand); color: #fff; }
@media (max-width: 575.98px) { .seg { width: 100%; overflow-x: auto; } }

/* ---------- Permission-Matrix ---------- */

.role-list .list-group-item {
    cursor: pointer; border-radius: var(--r-md);
    margin-bottom: .25rem; border: 1px solid transparent;
    font-weight: 700; background: transparent; color: var(--ink-2);
}
.role-list .list-group-item:hover { background: var(--muted-soft); color: var(--ink); }
.role-list .list-group-item.active {
    background: var(--brand-soft); color: var(--brand-ink);
    border-color: transparent;
}

.matrix-table th, .matrix-table td { vertical-align: middle; }
.matrix-table td.perm-cell { text-align: center; }
.matrix-table .form-check-input { width: 1.25rem; height: 1.25rem; margin: 0; }

/* B1 #1: Sticky-Header-Fix. Kein innerer Scroll-Container auf Desktop –
   die SEITE scrollt, der Kopf klebt unterhalb der sticky Topbar (~57px),
   deckend mit Rand, über den Zeilen. Auf Mobile scrollt die Matrix
   horizontal im eigenen Container, dort ist sticky deaktiviert. */
.matrix-table thead th {
    position: sticky;
    top: 57px;                       /* Höhe der sticky .top-Bar */
    background: var(--surface);
    z-index: 20;                     /* über Zeilen, unter Topbar (1030) */
    border-bottom: 2px solid var(--line);
    box-shadow: 0 1px 0 var(--line);
}
.matrix-scroll { min-width: 0; }
@media (max-width: 767.98px) {
    .matrix-scroll { overflow-x: auto; }
    .matrix-table thead th { position: static; }
}

/* B1 #2: Radios/Checkboxen deutlich sichtbar (WCAG 1.4.11 Non-Text Contrast).
   Border #8B96A9 auf Weiß = 3.0:1 (≥ 3:1). */
.form-check-input,
.matrix-table input[type="checkbox"],
.matrix-table input[type="radio"],
table input[type="radio"] {
    width: 1.25rem;                  /* min. 20px */
    height: 1.25rem;
    border: 2px solid var(--ink-3);
    background-color: #fff;
}
.form-check-input:hover,
table input[type="radio"]:hover,
.matrix-table input[type="checkbox"]:hover {
    border-color: var(--brand);
}
.form-check-input:checked,
table input[type="radio"]:checked,
.matrix-table input[type="checkbox"]:checked {
    background-color: var(--brand);
    border-color: var(--brand);      /* innerer Punkt/Haken: weißes Bootstrap-SVG */
}
.form-check-input:focus-visible,
table input[type="radio"]:focus-visible,
.matrix-table input[type="checkbox"]:focus-visible {
    outline: 3px solid var(--brand);
    outline-offset: 2px;
    box-shadow: none;
}
.form-check { min-height: 24px; }    /* Klickfläche über das Label */
.form-check .form-check-label { padding-block: 2px; }

/* B1 #2: gewählte Option textlich neben dem Radio (nur Mobile sichtbar) */
.vis-opt-label { display: none; }
@media (max-width: 767.98px) {
    .vis-opt-label {
        display: block;
        font-size: .72rem;
        font-weight: 600;
        color: var(--ink-2);
        margin-top: .2rem;
    }
}

/* ---------- Onboarding: Fortschritts-Steps ---------- */

.progress-steps .p-step { display: flex; gap: .85rem; align-items: flex-start; }
.progress-steps .p-step .p-icon {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--muted-soft); color: var(--ink-3);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.progress-steps .p-step.running .p-icon { background: var(--brand-soft); color: var(--brand-ink); }
.progress-steps .p-step.done .p-icon { background: var(--ok-soft); color: var(--ok-text); }

.hero-checklist { list-style: none; padding: 0; margin: 1.1rem 0 0; position: relative; z-index: 1; }
.hero-checklist li { color: var(--on-brand-dim); font-weight: 600; font-size: .92rem; margin-bottom: .4rem; }
.hero-checklist .ti { color: #fff; margin-right: .45rem; }

/* ---------- Formulare ---------- */

.form-control, .form-select {
    border-radius: var(--r-md);
    border-color: var(--line);
    font-family: Manrope, sans-serif;
}
.form-control:focus, .form-select:focus, .form-check-input:focus {
    border-color: color-mix(in srgb, var(--brand) 40%, #fff);
    box-shadow: 0 0 0 .25rem color-mix(in srgb, var(--brand) 22%, transparent);
}
.form-check-input:checked { background-color: var(--brand); border-color: var(--brand); }
.form-label { font-weight: 700; font-size: .88rem; }
.form-text { color: var(--ink-2); }
input[type="checkbox"], input[type="radio"] { accent-color: var(--brand); }

/* Sprach-/Options-Pills (label umschließt Checkbox) */
.pill-toggle {
    display: inline-flex; align-items: center; gap: .5rem;
    border: 1.5px solid var(--line); border-radius: 99px;
    padding: .45rem 1rem; font-weight: 700; font-size: .88rem;
    background: var(--surface); cursor: pointer; color: var(--ink-2);
}
.pill-toggle:has(input:checked) { background: var(--brand-soft); color: var(--brand-ink); border-color: transparent; }
.pill-toggle:has(input:disabled) { opacity: .7; cursor: not-allowed; }
.pill-toggle:has(input:focus-visible) { outline: 3px solid var(--brand); outline-offset: 2px; }
.pill-toggle input { margin: 0; }

.upload-drop {
    border: 2px dashed var(--line);
    border-radius: var(--r-md);
    padding: 1.5rem; text-align: center;
    color: var(--ink-2); background: var(--surface);
}
.upload-drop:hover { border-color: var(--brand); }

.color-swatch-input { width: 3.4rem; height: 2.6rem; padding: .25rem; }

/* ---------- Bootstrap-Feinschliff ---------- */

.dropdown-menu {
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    box-shadow: var(--sh-md);
    font-family: Manrope, sans-serif;
    font-size: .9rem;
}
.dropdown-item { font-weight: 600; color: var(--ink-2); }
.dropdown-item:hover { background: var(--brand-wash); color: var(--ink); }

.modal-content { border-radius: var(--r-lg); border: 0; box-shadow: var(--sh-md); }

.alert { border-radius: var(--r-md); font-weight: 600; }

/* ============================================================
   Phase C1: Terminarten, Unternehmen, Termin-Modul
   ============================================================ */

/* Farb-Punkt der Terminarten */
.color-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; border: 1px solid rgba(0,0,0,.12); }

/* Chips als Links (Filterzustand) */
a.chip { text-decoration: none; }
.chip a.x { text-decoration: none; }
.chip.chip-active { outline: 2px solid var(--brand); outline-offset: 1px; }

/* Wizard-Slot-Vorschau: dritter Zustand „abgewählt" (aktiv → blockiert → abgewählt) */
.slot-preview.removed {
    text-decoration: line-through;
    opacity: .55;
    background: transparent;
    border-style: dashed;
}
.slot-preview.removed::before { background: var(--danger); }
button.slot-preview { font: inherit; }

/* Slot-Verwaltung in der Termindetail-Übersicht */
.slot-manage-list { margin: 0; }
.slot-manage {
    display: flex; align-items: center; gap: .7rem; flex-wrap: wrap;
    padding: .45rem .2rem;
    border-top: 1px solid var(--line);
}
.slot-manage:first-child { border-top: 0; }
.slot-manage .slot-time {
    display: inline-flex; align-items: center; gap: .45rem;
    font-weight: 700; font-variant-numeric: tabular-nums; min-width: 110px;
}
.slot-manage .slot-time .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); }
.slot-manage.is-blocked .slot-time .dot { background: #B9C2D2; }
.slot-manage.is-blocked .slot-time { color: var(--ink-2); }
.slot-manage .slot-occ { font-variant-numeric: tabular-nums; font-weight: 700; font-size: .85rem; min-width: 42px; }
.slot-note-form { display: inline-flex; align-items: center; gap: .3rem; }
.slot-note-form input { max-width: 220px; }

/* Logo-Vorschau (Unternehmen) */
.logo-thumb { position: relative; }
.logo-thumb img {
    width: 110px; height: 72px; object-fit: contain;
    background: var(--canvas); border: 1px solid var(--line); border-radius: var(--r-md);
    padding: .4rem;
}
.logo-thumb form { position: absolute; top: -8px; right: -8px; }
.logo-thumb .icon-btn { background: var(--surface); box-shadow: var(--sh-sm); }

/* QR-Box im Link-&-Versand-Tab */
.qr-box svg { max-width: 220px; height: auto; border: 1px solid var(--line); border-radius: var(--r-md); }

/* Leichter Beschreibungs-Editor (JS-Enhancement der Textarea) */
.editor-toolbar {
    display: flex; gap: .25rem;
    background: var(--canvas);
    border: 1px solid var(--line); border-bottom: 0;
    border-radius: var(--r-md) var(--r-md) 0 0;
    padding: .35rem .5rem;
}
.editor-area {
    min-height: 130px;
    border-top-left-radius: 0; border-top-right-radius: 0;
    overflow-y: auto;
}
.editor-area:focus-visible { outline: 3px solid var(--brand); outline-offset: 1px; }
.editor-area p:last-child, .editor-area ul:last-child, .editor-area ol:last-child { margin-bottom: 0; }

/* ---------- Phase C2: Buchungsstrecke ---------- */

a.slot-chip { text-decoration: none; }
button.slot-chip { font: inherit; }
.slot-chip:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }
[data-autofocus]:focus { outline: none; }

.pagination .page-link {
    border: 0; border-radius: 99px !important;
    font-weight: 700; color: var(--ink-2);
    margin: 0 2px; font-variant-numeric: tabular-nums;
}
.pagination .page-item.active .page-link { background: var(--brand); color: #fff; }
.pagination .page-link:hover { background: var(--muted-soft); color: var(--ink); }
.pagination .page-item.disabled .page-link { color: var(--ink-3); background: transparent; }

.toast { border-radius: var(--r-md); }

/* ---------- Sonstiges ---------- */

.kpi-icon {
    width: 44px; height: 44px; border-radius: var(--r-md);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    background: var(--brand-soft); color: var(--brand-ink);
    flex-shrink: 0;
}

.activity-feed { list-style: none; margin: 0; padding: 0; }
.activity-feed li { display: flex; gap: .75rem; padding: .65rem 0; border-bottom: 1px solid var(--line); }
.activity-feed li:last-child { border-bottom: 0; }
.activity-feed .act-icon {
    width: 34px; height: 34px; border-radius: 10px;
    background: var(--brand-soft); color: var(--brand-ink);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: .95rem;
}

.dash-grid { display: grid; grid-template-columns: 1fr 340px; gap: 1rem; }
@media (max-width: 1080px) { .dash-grid { grid-template-columns: 1fr; } }

.index-card { text-decoration: none; color: inherit; display: block; height: 100%; transition: transform .12s, box-shadow .12s; }
.index-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); color: inherit; }

.empty-state svg { max-width: 100%; height: auto; }

.row-actions .dropdown-menu { min-width: 230px; }

.text-ink-2 { color: var(--ink-2) !important; }
.text-ink-3 { color: var(--ink-3) !important; }

footer.public-footer {
    border-top: 1px solid var(--line);
    background: var(--surface);
    padding: 1.3rem 0;
    font-size: .84rem; color: var(--ink-2); font-weight: 600;
}
footer.public-footer a { color: var(--ink-2); }

/* ============================================================
   App-Erweiterungen (Phase B) – ergänzend zum v2-Prototyp-CSS
   ============================================================ */

/* Auth-Layout (Login / MFA / Reset) */
.auth-body { background: linear-gradient(160deg, var(--brand-wash), var(--canvas) 55%); }
.auth-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
}
.auth-card { width: 100%; max-width: 440px; }
.auth-card-wide { max-width: 560px; }
.auth-foot { color: var(--ink-3); font-size: .8rem; font-weight: 600; margin-top: 1rem; }

/* Deaktivierte Navigationspunkte (Module ab Phase C) */
.nav-side .nav-disabled {
    display: flex; align-items: center; gap: .65rem;
    color: #5E6E8C; padding: .58rem .7rem;
    border-radius: 10px; font-weight: 600; cursor: not-allowed;
}
.nav-side .nav-disabled .ti { font-size: 1.1rem; opacity: .6; width: 20px; text-align: center; flex-shrink: 0; }

/* Flash-Messages in v2-Farbwelt */
.alert.flash { border: 0; border-radius: var(--r-md); font-weight: 600; }
.flash-ok     { background: var(--ok-soft); color: var(--ok-text); }
.flash-info   { background: var(--brand-soft); color: var(--brand-ink); }
.flash-warn   { background: var(--warn-soft); color: var(--warn); }
.flash-danger { background: var(--danger-soft); color: var(--danger); }

/* Formular-Fehlerliste */
.form-errors { border-radius: var(--r-md); background: var(--danger-soft); color: var(--danger); padding: .8rem 1rem; font-weight: 600; }
.form-errors ul { margin: 0; padding-left: 1.2rem; }

/* MFA */
.otp-input { font-size: 1.5rem; letter-spacing: .5em; text-align: center; font-variant-numeric: tabular-nums; }
.qr-box { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: .8rem; display: inline-block; }
.backup-codes { columns: 2; font-family: ui-monospace, Consolas, monospace; font-size: 1.05rem; font-weight: 700; }
.backup-codes li { margin-bottom: .35rem; break-inside: avoid; }
.secret-manual { font-family: ui-monospace, Consolas, monospace; font-weight: 700; letter-spacing: .08em; background: var(--muted-soft); border-radius: 8px; padding: .35rem .6rem; display: inline-block; }

/* Matrix-Formular */
.matrix-table input[type="checkbox"] { width: 1.25rem; height: 1.25rem; }

/* ---------- Phase D: Plattform / Super-Admin ---------- */

/* Dunkles Band für den Super-Admin-Bereich (bewusst KEIN Tenant-Branding) */
.band-super {
    background: linear-gradient(120deg, #0B1220 0%, #16233B 62%, #24395E 100%);
}

.nav-super { display: flex; gap: .3rem; flex-wrap: wrap; }
.nav-super a {
    color: var(--on-brand-dim); text-decoration: none; font-weight: 700;
    font-size: .88rem; padding: .4rem .85rem; border-radius: 999px;
}
.nav-super a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-super a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.16); }

/* Impersonation-Banner (Super-Admin arbeitet im Tenant) */
.impersonation-banner {
    background: #7A2E0E; color: #fff;
    display: flex; align-items: center; justify-content: center; gap: .8rem;
    padding: .55rem 1rem; font-size: .88rem; font-weight: 600; flex-wrap: wrap;
}
.impersonation-banner form { margin: 0; }
.impersonation-banner .btn-v2 {
    background: #fff; color: #7A2E0E; border-color: #fff;
    padding: .25rem .8rem; font-size: .8rem;
}

/* Provisionierungs-Fortschritt: Fehlerzustand (done/running existieren bereits) */
.progress-steps .p-step.error .p-icon { background: var(--danger-soft); color: var(--danger); }
.progress-steps .p-step.pending { opacity: .6; }

/* ---------- Phase E: Hilfe-Artikel ---------- */
.help-article h1 { font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: .35rem; }
.help-article h2 { font-size: 1.02rem; font-weight: 800; margin: 1.4rem 0 .5rem; }
.help-article p, .help-article li { color: var(--ink-2); font-size: .93rem; line-height: 1.6; }
.help-article ol li, .help-article ul li { margin-bottom: .35rem; }
.help-article .lead { font-size: .98rem; }
.help-article kbd, .help-article code {
    background: var(--muted-soft); color: var(--ink); border-radius: 6px;
    padding: .1rem .4rem; font-size: .85em;
}
.help-article .hint {
    background: var(--brand-wash); border: 1px solid var(--line);
    border-radius: 12px; padding: .7rem 1rem; font-size: .88rem;
}

/* ============================================================
   App-Redesign „Präzisionsinstrument" (11.08.2026, von Joern freigegeben)
   Zentrale Überschreibungen ans Datei-Ende – Module bleiben unverändert.
   Scope .shell = Verwaltung; öffentliche Buchungsseiten behalten ihr
   Tenant-Farbband. Prinzip: Papier auf Werkbank, Tinte trägt,
   Farbe (Nachtblau bzw. Tenant-CI) nur als Signal. Buttons FLACH.
   ============================================================ */

body { background: #EFF1F3; }

h1, h2, h3, h4, h5, h6,
.btn-v2 { font-family: "Schibsted Grotesk", Manrope, sans-serif; }
.btn-v2 { letter-spacing: .02em; border-radius: 9px; }

.card { border: 1px solid var(--line); border-radius: 12px;
        box-shadow: 0 1px 2px rgba(21,27,35,.04), 0 12px 32px -24px rgba(21,27,35,.18); }
.card.lift { box-shadow: 0 1px 2px rgba(21,27,35,.05), 0 16px 40px -28px rgba(21,27,35,.22); }

.form-control, .form-select { background-color: #FBFCFC; }
.form-control:focus, .form-select:focus { background-color: #fff; }

.side { background: #0E1319; }

/* Verwaltungs-Kopf: Papier statt Farbband.
   Flächen-Staffelung (Joern 11.08.): Topbar weiß → Kopf #F6F7F9 → Werkbank #EFF1F3,
   damit weiße Karten sich von jeder Ebene abheben (kein Weiß-auf-Weiß). */
.shell .band { background: #F6F7F9; color: var(--ink); border-bottom: 1px solid var(--line);
               padding: 1.15rem 0 3.6rem; }
.shell .band::after { display: none; }
.shell .band h1 { color: var(--ink); font-size: 1.35rem; }
.shell .band p { color: var(--ink-3); }
.shell .band .btn-white { background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.shell .band .btn-white:hover { border-color: var(--ink-3); background: #fff; color: var(--ink); }
.shell .band .lang a { color: var(--ink-3); }
.shell .band .lang a[aria-current] { color: var(--brand-ink); background: var(--brand-soft); }
.shell .band :focus-visible { outline-color: var(--brand); }
.shell .band .pill-badge { background: var(--brand-soft) !important; color: var(--brand-ink) !important; }

/* Einheitliche Karten-Überschriften (Joern 11.08.): Alle h2/h3 in Karten
   dieselbe Größe/Gewichtung – unabhängig vom Kartentyp (.list, .today, p-3 …).
   Vorher fiel z.B. „Letzte Aktivitäten" auf die 2rem-Standard-h2 zurück. */
.card h2, .card h3, .chead h2 { font-size: 1.08rem; font-weight: 700; }

/* Tabellen-Scroller: Bootstraps overflow-x:auto zwingt overflow-y auf auto –
   der 1rem-Margin der Tabelle IM Container erzeugte sonst grundlos einen
   Rollbalken (Joern 11.08., Auswertungen). Scrollen nur bei echtem Überlauf. */
.table-responsive > .table { margin-bottom: 0; }
.table-responsive { overflow-y: hidden; }

/* Drag & Drop Terminarten → Kategorien (Pfeile bleiben als Tastatur-Weg) */
[data-dnd-type] { cursor: grab; }
[data-dnd-type].dnd-dragging { opacity: .45; cursor: grabbing; }
[data-dnd-cat].dnd-over { outline: 2px dashed var(--brand); outline-offset: 3px; background: var(--brand-wash); }

/* Wizard-Stepper im (jetzt hellen) Band */
.shell .band .stepper { color: var(--ink-2); }
.shell .band .step-num { background: var(--muted-soft); color: var(--ink-2); }
.shell .band .step[aria-current] .step-num,
.shell .band .step-done .step-num { background: var(--brand); color: #fff; }

/* ---------- Banner-Upload (Titelbild, Terminart-Bild) ---------- */

.bu-preview { position: relative; display: inline-block; max-width: 100%; }
.bu-preview img { display: block; max-width: 100%; height: auto; border-radius: var(--r-md); }

.bu-frame {
    position: absolute; box-sizing: border-box;
    border: 2px solid #fff; outline: 2px solid rgba(0, 0, 0, .65);
    cursor: move; touch-action: none;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .38);
}
.bu-frame:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }

.bu-progress { height: .5rem; background: var(--wash); border-radius: 99px; overflow: hidden; }
.bu-progress > span { display: block; height: 100%; width: 0; background: var(--brand); }

.bu-fields { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .75rem; }
.bu-fields label { font-size: .85rem; color: var(--ink-2); }

/* ---------- Override-Block (Aufgabe 5, Nachbesserung Fund 2/Punkt 2) ---------- */

/* Dass .bu-fields trotz seines eigenen "display: flex" beim [hidden]-Attribut
   verschwindet, verdankt sich bislang ausschließlich Bootstraps CDN-Regel
   "[hidden] { display: none !important }" — die gewinnt nur, weil sie mit
   !important kommt, nicht wegen Selektor-Spezifität. Fällt das CDN aus oder
   wird Bootstrap ersetzt, stünden die ohne JavaScript wirkungslosen
   Zahlenfelder ungewollt sichtbar im Formular (BITV: angekündigte,
   wirkungslose Bedienelemente). Diese Regel stellt das unabhängig vom CDN
   sicher. */
.bu-fields[hidden] { display: none !important; }

/* Ausschnitt-Bestaetigung: der Knopf IST die Anzeige. Er muss auffallen --
   eine kleine Schaltflaeche zwischen zwei Textzeilen wurde beim Test schlicht
   uebersehen. [hidden] mit !important, weil display:flex auf Autoren-Ebene
   sonst gewinnt, sobald Bootstraps Reboot ausfaellt. */
.bu-confirm { display: flex; }
.bu-confirm[hidden] { display: none !important; }
.bu-confirm-btn {
    font-size: 1rem; font-weight: 600;
    padding: .6rem 1.4rem;
    min-width: 16rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .18);
}
.bu-confirm-btn[data-bu-confirm].btn-success { cursor: default; }
