/* =====================================================================
   app.css — UI der Plattform (Login, Registrierung, Dashboard, Wizard)
   Designsprache der Landingpage: Mint · Teal-Gradient · Pills · Paper
   ===================================================================== */

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/Poppins-Light.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Poppins-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/Poppins-Medium.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2');
}

:root {
    --ink:       #16292B;
    --ink-soft:  #2C4143;
    --mid:       rgba(22, 41, 43, 0.6);
    --paper:     #FFFFFF;
    --bg:        #EFF6F4;
    --teal:      #0B7180;
    --teal-mid:  #10A6AE;
    --green:     #2BA86A;
    --line:      rgba(36, 30, 32, 0.10);
    --line-soft: rgba(36, 30, 32, 0.06);

    --grad-primary: linear-gradient(118deg, #1E86C9 0%, #10A6AE 46%, #0B7180 100%);
    --grad-soft:    linear-gradient(135deg, #DBEEEE 0%, #D7EBDE 100%);
    --grad-text:    linear-gradient(100deg, #1E86C9, #0B7180 60%, #2BA86A);

    --r:    18px;
    --r-md: 14px;
    --r-lg: 28px;
    --r-xl: 36px;
    --pill: 999px;

    --sh-xs: 0 2px 8px rgba(13, 110, 125, 0.08);
    --sh-sm: 0 8px 24px -8px rgba(13, 110, 125, 0.18);
    --sh:    0 22px 54px -18px rgba(13, 110, 125, 0.30);

    --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }

/* Eingabefelder füllen IMMER ihre Zelle (Browser-Default ist Festbreite!) */
input, textarea, select, button { max-width: 100%; }
.form-card input, .form-card textarea,
.wizard-form input, .wizard-form textarea,
.rep-row input, .rep-row textarea { width: 100%; }

body.app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    background-image: radial-gradient(ellipse 90% 60% at 80% -10%, rgba(16, 166, 174, 0.10), transparent 60%),
                      radial-gradient(ellipse 70% 50% at 10% 100%, rgba(43, 168, 106, 0.08), transparent 60%);
    background-attachment: fixed;
    color: var(--ink);
    font-family: var(--font);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
::selection { background: var(--teal-mid); color: #fff; }

/* ------------------------------------------------------------ Appbar */
.appbar {
    position: sticky;
    top: 14px;
    z-index: 60;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: min(1060px, calc(100% - 28px));
    margin: 14px auto 0;
    padding: 0 clamp(18px, 3vw, 28px);
    height: 60px;
    background: var(--paper);
    border-radius: var(--pill);
    box-shadow: var(--sh-sm);
}
.appbar-brand {
    font-weight: 600;
    font-size: 15.5px;
    letter-spacing: -0.01em;
    text-decoration: none;
}
.appbar-brand .dot { color: var(--teal-mid); }
.appbar-nav { display: flex; gap: 6px; }
.appbar-nav a {
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    color: var(--ink-soft);
    padding: 8px 14px;
    border-radius: var(--pill);
    transition: background 0.2s ease, color 0.2s ease;
}
.appbar-nav a:hover { background: var(--bg); color: var(--teal); }
@media (max-width: 480px) {
    .appbar { padding: 0 16px; gap: 8px; }
    .appbar-brand { font-size: 13.5px; }
    .appbar-nav { gap: 0; }
    .appbar-nav a { padding: 8px 9px; font-size: 12.5px; white-space: nowrap; }
}

/* -------------------------------------------------------------- Main */
.app-main {
    flex: 1;
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 56px) clamp(16px, 3vw, 40px);
}
.app-foot {
    padding: 20px clamp(20px, 4vw, 48px);
    font-size: 12px;
    color: var(--mid);
    text-align: center;
}
.app-foot-line {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    justify-content: center;
}
.app-foot-line img { height: 72px; width: auto; display: block; opacity: 0.9; }

/* ------------------------------------------------------------ Landing-Karte (Fallback) */
.hero-card { max-width: 640px; margin: 0 auto; text-align: center; }
.eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--teal);
    background: var(--paper);
    border-radius: var(--pill);
    padding: 8px 16px;
    box-shadow: var(--sh-xs);
}
.hero-card h1 {
    font-size: clamp(34px, 6.5vw, 52px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 18px 0;
}
.hero-sub { font-size: 16.5px; color: var(--mid); }
.hero-actions { display: flex; gap: 12px; margin-top: 26px; justify-content: center; flex-wrap: wrap; }

/* ------------------------------------------------------------ Buttons */
.btn {
    display: inline-block;
    padding: 13px 26px;
    font-family: var(--font);
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border: 0;
    border-radius: var(--pill);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
    color: #fff;
    background: var(--grad-primary);
    box-shadow: 0 12px 30px -10px rgba(13, 110, 125, 0.6);
}
.btn-primary:hover { box-shadow: 0 16px 36px -10px rgba(13, 110, 125, 0.7); }
.btn-ghost {
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--sh-sm);
}
.btn-block { width: 100%; }
.btn-small { padding: 9px 18px; font-size: 13px; align-self: flex-start; }

/* -------------------------------------------------------------- Forms */
.form-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--paper);
    border-radius: var(--r-xl);
    box-shadow: var(--sh);
    padding: clamp(26px, 5vw, 44px);
}
.form-card h1 { font-size: 27px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--mid); margin-bottom: 18px; }
.form-card form { display: flex; flex-direction: column; gap: 16px; margin-top: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.field-group { display: flex; flex-direction: column; gap: 9px; }
.field-label { font-size: 13.5px; font-weight: 500; }
.form-card .domain-line { padding: 11px 16px; }
.form-card .domain-url { font-size: 13.5px; word-break: break-all; }
.domain-url .domain-slug { color: var(--ink-soft); }
.form-card label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 500;
}
.form-card .hint { font-weight: 400; color: var(--mid); }
.form-card input {
    padding: 12px 16px;
    font-family: var(--font);
    font-size: 15px;
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    background: #fff;
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-card input:focus {
    outline: none;
    border-color: var(--teal-mid);
    box-shadow: 0 0 0 4px rgba(16, 166, 174, 0.15);
}
.form-alt { margin-top: 20px; font-size: 13.5px; color: var(--mid); text-align: center; }
.form-alt a { color: var(--teal); font-weight: 500; }

.alert {
    padding: 13px 16px;
    font-size: 14px;
    border-radius: var(--r-md);
    margin: 12px 0;
}
.alert-error { color: #8c2320; background: rgba(197, 65, 61, 0.1); }
.alert-ok    { color: #1d6e44; background: rgba(43, 168, 106, 0.12); }

/* -------------------------------------------------- PoW-Captcha (unsichtbar) */
.gp-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
[data-gp-captcha] { min-height: 0; }
.gp-captcha-status { font-size: 12.5px; color: var(--mid); }
.gp-captcha-status[data-state="idle"] { display: none; }
.gp-captcha-status[data-state="ok"] { color: var(--green); }
.gp-captcha-status[data-state="fail"] { color: #b3372f; }

/* ----------------------------------------------------------- Dashboard */
.dash h1 { font-size: clamp(26px, 5vw, 38px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 24px; }
.dash-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 760px) { .dash-grid { grid-template-columns: 1fr 1fr; } }
.dash-card {
    background: var(--paper);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    padding: 26px;
}
.dash-card h2 { font-size: 16.5px; font-weight: 600; margin-bottom: 12px; }
.dash-card p { font-size: 14px; color: var(--mid); margin-bottom: 12px; }
.dash-url a {
    font-size: 17px;
    font-weight: 600;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
}
.status { font-size: 13.5px; }
.status-on  { color: var(--green); font-weight: 500; }
.status-off { color: var(--mid); }
.hint-small { font-size: 12.5px; color: var(--mid); }
.hint-small a { color: var(--teal); }

.dash-section-title { font-size: 21px; font-weight: 600; margin: 38px 0 16px; letter-spacing: -0.01em; }

/* -------------------------------------------------------------- Wizard */
.wizard { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 860px) { .wizard { grid-template-columns: 230px 1fr; align-items: start; } }

.stepper {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--paper);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    padding: 12px;
}
@media (max-width: 859px) { .stepper { flex-direction: row; flex-wrap: wrap; gap: 4px; } }
.stepper a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    border-radius: var(--pill);
    transition: background 0.2s ease;
}
.stepper a:hover { background: var(--bg); }
.stepper .is-current a { background: var(--bg); color: var(--teal); font-weight: 600; }
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 600;
    border: 1.5px solid var(--line);
    border-radius: 50%;
    color: var(--mid);
}
.stepper .is-done .step-num,
.checklist .is-done .step-num {
    background: var(--grad-primary);
    border-color: transparent;
    color: #fff;
}

.wizard-body {
    background: var(--paper);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-sm);
    padding: clamp(22px, 4vw, 40px);
}
.wizard-body h1 { font-size: 25px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 18px; }
.wizard-body .optional {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--bg);
    border-radius: var(--pill);
    padding: 4px 10px;
    vertical-align: middle;
    font-weight: 600;
}
.wizard-form { display: flex; flex-direction: column; gap: 16px; max-width: 680px; }
.wizard-form label { display: flex; flex-direction: column; gap: 7px; font-size: 13.5px; font-weight: 500; }
.wizard-form .hint, .wizard .hint { font-weight: 400; color: var(--mid); font-size: 12.5px; }
.wizard-form input[type="text"], .wizard-form input[type="email"],
.wizard-form textarea, .wizard-form input[type="file"] {
    padding: 11px 15px;
    font-family: var(--font);
    font-size: 14.5px;
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    background: #fff;
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.wizard-form textarea { resize: vertical; }
.wizard-form input:focus, .wizard-form textarea:focus {
    outline: none;
    border-color: var(--teal-mid);
    box-shadow: 0 0 0 4px rgba(16, 166, 174, 0.15);
}
.form-section { font-size: 16px; font-weight: 600; margin-top: 14px; }
.wizard-actions { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; align-items: center; }

/* Repeater */
.repeater { display: flex; flex-direction: column; gap: 10px; }
.rep-row { display: grid; gap: 8px; align-items: start; }
.rep-row-single { grid-template-columns: 1fr auto; }
.rep-row-exp    { grid-template-columns: 1fr auto; }
.rep-row-edu    { grid-template-columns: 1fr auto; }
.rep-row-pair   { grid-template-columns: 1fr 1fr auto; }
@media (min-width: 760px) {
    .rep-row-exp { grid-template-columns: 150px 1fr 1fr 1fr auto; }
    .rep-row-edu { grid-template-columns: 150px 1fr 1fr auto; }
}
.rep-row input, .rep-row textarea {
    padding: 10px 12px;
    font-family: var(--font);
    font-size: 14px;
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    background: #fff;
}
.rep-row input:focus, .rep-row textarea:focus {
    outline: none;
    border-color: var(--teal-mid);
    box-shadow: 0 0 0 3px rgba(16, 166, 174, 0.13);
}
.rep-tools { display: flex; gap: 4px; }
.rep-tools button {
    width: 30px;
    height: 38px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    color: var(--mid);
    cursor: pointer;
    font-size: 14px;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.rep-tools button:hover { color: var(--teal); border-color: var(--teal-mid); }

/* Foto-Zuschnitt */
.photo-current { display: flex; align-items: center; gap: 14px; }
.photo-current img { border-radius: var(--r-md); box-shadow: var(--sh-xs); }
.crop-stage {
    width: 300px;
    height: 400px;
    border: 2px solid var(--teal-mid);
    border-radius: var(--r-md);
    overflow: hidden;
    touch-action: none;
}
.crop-stage canvas { display: block; cursor: grab; }
.crop-stage canvas:active { cursor: grabbing; }
.crop-zoom { max-width: 300px; }
.crop-zoom input { width: 100%; accent-color: var(--teal); }

/* Unterlagen-Liste */
.doc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; max-width: 680px; }
.doc-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    padding: 13px 18px;
    background: var(--bg);
    border-radius: var(--r-md);
    font-size: 14px;
}
.doc-list-title { font-weight: 600; }
.doc-list-meta { color: var(--mid); flex: 1; }
.doc-list a { color: var(--teal); font-size: 13px; font-weight: 500; }
.inline-form { display: inline; }
.link-danger {
    border: 0;
    background: none;
    color: var(--mid);
    font-family: var(--font);
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
}
.link-danger:hover { color: #b3372f; }

.check-line {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 10px !important;
    font-size: 14.5px !important;
}
.check-line input { width: 19px; height: 19px; accent-color: var(--teal); }

/* Dashboard-Checkliste */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.checklist a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    padding: 9px 12px;
    background: var(--bg);
    border-radius: var(--r-md);
    transition: background 0.2s ease;
}
.checklist a:hover { background: #E3EFEC; }
.checklist .step-num { width: 21px; height: 21px; font-size: 10px; background: var(--paper); }
.checklist .todo { color: var(--mid); font-size: 12px; margin-left: auto; }

/* Domain-Wahl (Publish-Adresse) */
.domain-list { display: flex; flex-direction: column; gap: 9px; max-width: 560px; }
.domain-line {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 12px !important;
    padding: 13px 18px;
    background: var(--bg);
    border: 1.5px solid transparent;
    border-radius: var(--pill);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.domain-line:hover { background: #E3EFEC; }
.domain-line:has(input:checked) {
    background: var(--paper);
    border-color: var(--teal-mid);
    box-shadow: var(--sh-xs);
}
.domain-line input { width: 17px; height: 17px; accent-color: var(--teal); }
.domain-url { font-size: 15px; font-weight: 600; letter-spacing: 0.01em; }
.domain-url .domain-host {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---------------------------------------------------------------- Admin */
.admin h1 { font-size: clamp(24px, 4.5vw, 32px); font-weight: 600; margin: 18px 0 18px; }
.admin-nav { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-nav a {
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: var(--ink-soft);
    background: var(--paper);
    border-radius: var(--pill);
    padding: 9px 18px;
    box-shadow: var(--sh-xs);
}
.admin-nav a.is-current { background: var(--grad-primary); color: #fff; }
.admin-table-wrap {
    background: var(--paper);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    padding: 8px 16px;
    overflow-x: auto;
    margin-top: 16px;
}
.admin-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.admin-table th {
    text-align: left;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
    padding: 12px 10px 8px;
    border-bottom: 1.5px solid var(--line);
    white-space: nowrap;
}
.admin-table td { padding: 11px 10px; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.admin-table tr:last-child td { border-bottom: 0; }
.admin-table .mut { color: var(--mid); font-size: 12.5px; }
.admin-table a { color: var(--teal); text-decoration: none; }
.admin-table a:hover { text-decoration: underline; }
.admin-table code { background: var(--bg); border-radius: 7px; padding: 3px 8px; font-size: 12.5px; }
.pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: var(--pill);
    padding: 3px 10px;
    white-space: nowrap;
}
.pill-on  { background: rgba(43, 168, 106, 0.14); color: #1d6e44; }
.pill-off { background: rgba(22, 41, 43, 0.08); color: var(--mid); }
.admin-actions { white-space: nowrap; }
.admin-actions .inline-form { display: inline-block; margin-right: 6px; }
.btn-mini {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    color: var(--teal);
    background: var(--bg);
    border: 0;
    border-radius: var(--pill);
    padding: 6px 13px;
    cursor: pointer;
}
.btn-mini:hover { background: #E3EFEC; }
.btn-mini-danger { color: #b3372f; }
.admin-gen { margin-top: 18px; }
.gen-form { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; }
.gen-form label { display: flex; flex-direction: column; gap: 6px; font-size: 12.5px; font-weight: 500; }
.gen-form input {
    padding: 9px 12px;
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    font-family: var(--font);
    font-size: 14px;
    width: 140px;
}
.fresh-codes {
    background: var(--paper);
    border-radius: var(--r);
    box-shadow: var(--sh-sm);
    padding: 16px 18px;
    margin-bottom: 4px;
}
.fresh-codes code {
    display: inline-block;
    background: rgba(43, 168, 106, 0.12);
    color: #1d6e44;
    font-size: 14px;
    font-weight: 600;
    border-radius: 9px;
    padding: 6px 12px;
    margin: 4px 6px 0 0;
    user-select: all;
}

/* --------------------------------------------------------- Theme-Wahl */
.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}
.theme-grid-live { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }

.theme-thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--r-md);
    background: #fff;
    box-shadow: var(--sh-xs);
    margin-bottom: 12px;
}
.theme-thumb iframe {
    width: 500%;
    height: 500%;
    border: 0;
    transform: scale(0.2);
    transform-origin: 0 0;
    pointer-events: none;
}

.theme-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    background: var(--paper);
    border: 1.5px solid transparent;
    border-radius: var(--r);
    box-shadow: var(--sh-xs);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.theme-card:hover { transform: translateY(-3px); box-shadow: var(--sh-sm); }
.theme-card:has(input:checked) {
    border-color: var(--teal-mid);
    box-shadow: var(--sh-sm);
}
.theme-card:has(input:checked)::after {
    content: "✓ gewählt";
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    background: var(--grad-primary);
    border-radius: var(--pill);
    padding: 5px 11px;
    box-shadow: var(--sh-xs);
}
.theme-card input { position: absolute; opacity: 0; pointer-events: none; }
.theme-name { font-size: 15px; font-weight: 600; }
.theme-kicker { font-size: 11.5px; color: var(--mid); letter-spacing: 0.03em; }
.theme-preview {
    margin-top: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    align-self: flex-start;
}
.theme-preview:hover { text-decoration: underline; }
.theme-card.is-soon { opacity: 0.55; cursor: default; }
.theme-card.is-soon:hover { transform: none; box-shadow: var(--sh-xs); }
.theme-soon {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--bg);
    border-radius: var(--pill);
    padding: 3px 9px;
    font-weight: 600;
}
