/* ===========================================================================
   tacho — AK86 internal revenue instrument
   Design language: instrument panel. Dark sidebar + light workspace, AK86 red/
   teal, Pragmatica, recurring plus-pattern. Signature = the dashboard KPI tiles.
   =========================================================================== */

:root {
    --red:        #BA1424;
    --teal:       #50BBB8;
    --dark:       #313130;
    --darker:     #1a1a1a;
    --white:      #FFFFFF;
    --gray-50:    #F5F5F5;
    --gray-100:   #ececeb;
    --gray-300:   #d6d6d4;
    --gray-mid:   #888888;

    --ink:        #313130;
    --ink-soft:   #5c5c5a;

    --grad-brand: linear-gradient(135deg, var(--red), var(--teal));
    --grad-dark:  linear-gradient(150deg, #2c2c2b 0%, var(--darker) 100%);

    --font-display: "pragmatica-extended", "Helvetica Neue", Arial, sans-serif;
    --font-body:    "pragmatica", "Helvetica Neue", Arial, sans-serif;

    --r:    14px;
    --r-sm: 9px;
    --shadow:    0 1px 2px rgba(49,49,48,.06), 0 8px 24px -12px rgba(49,49,48,.18);
    --shadow-lg: 0 24px 60px -28px rgba(49,49,48,.45);

    --sidebar-w: 252px;

    --plus: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34'%3E%3Cpath d='M17 11.5v11 M11.5 17h11' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.08' stroke-linecap='round'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { margin: 0; line-height: 1.1; }

/* Section heading helper — Pragmatica Extended, caps, punchy */
h1, .display {
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .01em;
}

h2 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.15rem;
}

.eyebrow {
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .72rem;
    color: var(--gray-mid);
}

/* ---------------------------------------------------------------- App shell */

body.app {
    display: grid;
    grid-template-columns: var(--sidebar-w) 1fr;
    min-height: 100vh;
}

.sidebar {
    position: sticky;
    top: 0;
    align-self: start;
    height: 100vh;
    background: var(--grad-dark);
    background-image: var(--plus), var(--grad-dark);
    background-size: 34px 34px, cover;
    color: var(--white);
    display: flex;
    flex-direction: column;
    padding: 28px 22px;
    overflow: hidden;
}
.sidebar::after { /* brand gradient hairline on the inner edge */
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 3px;
    background: var(--grad-brand);
}

.brand { display: block; margin-bottom: 40px; }
.brand__mark {
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.7rem;
    letter-spacing: .02em;
    color: var(--white);
    line-height: 1;
}
.brand__mark b { color: var(--red); }
.brand__product {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .28em;
    font-size: .7rem;
    color: rgba(255,255,255,.55);
}
.brand__product::before {
    content: "";
    width: 18px; height: 2px;
    background: var(--grad-brand);
}

.nav { display: flex; flex-direction: column; gap: 2px; }
.nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: var(--r-sm);
    color: rgba(255,255,255,.72);
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}
.nav a:hover { background: rgba(255,255,255,.06); color: #fff; text-decoration: none; }
.nav a.is-active {
    background: rgba(255,255,255,.08);
    color: #fff;
    box-shadow: inset 3px 0 0 var(--red);
}
.nav a .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: currentColor; opacity: .5;
}
.nav a.is-active .dot { background: var(--teal); opacity: 1; }

.sidebar__foot { margin-top: auto; padding-top: 24px; }
.sidebar__foot a {
    color: rgba(255,255,255,.5);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.sidebar__foot a:hover { color: #fff; text-decoration: none; }

/* ----------------------------------------------------------- Sub-nav (tabs) */
.subnav { display: flex; gap: 4px; border-bottom: 2px solid var(--gray-100); margin-bottom: 22px; }
.subnav a {
    padding: 10px 16px;
    font-weight: 700;
    font-size: .82rem;
    color: var(--gray-mid);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}
.subnav a:hover { color: #313130; text-decoration: none; }
.subnav a.is-active { color: var(--teal); border-bottom-color: var(--teal); }

/* ----------------------------------------------------------------- Content */

.content { min-width: 0; padding: 44px clamp(20px, 4vw, 56px); }
.content > *:last-child { margin-bottom: 0; }

.page-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.page-head h1 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: var(--ink);
}
.page-head .eyebrow { margin-bottom: 10px; }

/* ------------------------------------------------------------------- Cards */

.card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--r);
    padding: 26px 28px;
    box-shadow: var(--shadow);
    margin-bottom: 22px;
}
.card__title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.card__sub { color: var(--gray-mid); font-size: .9rem; margin: 0 0 18px; }

/* ------------------------------------------------------------------ Buttons */

.btn, button, input[type="submit"] {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: var(--r-sm);
    padding: 11px 20px;
    background: var(--red);
    color: #fff;
    transition: transform .08s ease, filter .15s ease, background .15s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}
.btn:hover, button:hover, input[type="submit"]:hover { filter: brightness(1.07); text-decoration: none; }
.btn:active, button:active { transform: translateY(1px); }
.btn:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 2px;
}

a.btn { color: #fff; }
a.btn:hover { color: #fff; }

.btn--ghost, button.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--gray-300);
}
.btn--ghost:hover { background: var(--gray-50); filter: none; }

.btn--dark { background: var(--dark); }

.btn--sm { padding: 8px 14px; font-size: .72rem; }

.btn--danger { background: transparent; color: var(--red); border-color: transparent; padding-left: 6px; padding-right: 6px; }
.btn--danger:hover { background: rgba(186,20,36,.08); filter: none; }

/* -------------------------------------------------------------------- Links */

.linkrow { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; margin-top: 18px; }
.backlink { font-weight: 700; color: var(--ink-soft); font-size: .85rem; }
.backlink:hover { color: var(--red); text-decoration: none; }

/* ------------------------------------------------------------ Action links (in tables) */

.actions { display: inline-flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.actions a, .action {
    font-weight: 700;
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--ink-soft);
    padding: 6px 10px;
    border-radius: 6px;
}
.actions a:hover { background: var(--gray-50); color: var(--ink); text-decoration: none; }
.actions form { display: inline; }

/* -------------------------------------------------------------------- Forms */

label { display: block; font-weight: 700; font-size: .85rem; margin-bottom: 6px; color: var(--ink); }

input[type="text"], input[type="email"], input[type="password"], input[type="number"],
input[type="date"], input[type="search"], select, textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--r-sm);
    padding: 11px 13px;
    transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(80,187,184,.18);
    outline: none;
}
textarea { min-height: 160px; resize: vertical; line-height: 1.5; }

/* Symfony form_row wraps each field in a bare <div> */
.form > div, form.stack > div { margin-bottom: 18px; }

input[type="checkbox"] {
    width: auto;
    accent-color: var(--red);
    transform: scale(1.15);
    margin-right: 8px;
}
/* checkbox rows read better inline */
.form > div:has(> input[type="checkbox"]) label,
form.stack > div:has(> input[type="checkbox"]) label { display: inline-block; margin: 0; }

.form, form.stack { max-width: 560px; }
.form button[type="submit"], form.stack button[type="submit"] { margin-top: 6px; }

/* validation errors (Symfony form_errors renders a bare <ul><li>) */
form.stack ul { list-style: none; margin: 7px 0 0; padding: 0; }
form.stack ul li { color: var(--red); font-size: .82rem; font-weight: 700; }
form.stack ul li::before { content: "! "; }

/* ------------------------------------------------------------------- Tables */

.table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: .92rem; }
.table thead th {
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .7rem;
    color: var(--gray-mid);
    padding: 0 16px 12px;
    border-bottom: 2px solid var(--gray-100);
    white-space: nowrap;
}
.table tbody td { padding: 14px 16px; border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr:hover td { background: #fafafa; }
.table .num { text-align: right; font-variant-numeric: tabular-nums; font-weight: 700; }
.table .empty td { color: var(--gray-mid); text-align: center; padding: 30px; font-style: normal; }

/* wide table: horizontal scroll with frozen first column */
.table-scroll { overflow-x: auto; }
.table-scroll .table th:first-child,
.table-scroll .table td:first-child { position: sticky; left: 0; background: var(--white); z-index: 1; }
.table-scroll .table thead th:first-child { z-index: 2; }
.table-scroll .table tbody tr:hover td:first-child { background: #fafafa; }

/* inline forms inside table cells (review assign/send) */
.inline-form { display: flex; gap: 8px; align-items: center; }
.inline-form select { width: auto; min-width: 140px; padding: 8px 10px; font-size: .85rem; }
.inline-form button { padding: 8px 14px; font-size: .72rem; }
.muted { color: var(--gray-mid); font-style: normal; font-size: .85rem; }

/* key/value detail table (show pages) */
.detail { width: 100%; max-width: 620px; border-collapse: collapse; }
.detail th {
    text-align: left;
    width: 200px;
    padding: 13px 16px 13px 0;
    color: var(--gray-mid);
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    vertical-align: top;
    border-bottom: 1px solid var(--gray-100);
}
.detail td { padding: 13px 0; border-bottom: 1px solid var(--gray-100); }
.detail tr:last-child th, .detail tr:last-child td { border-bottom: none; }

/* ------------------------------------------------------------------ Badges */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 4px 10px;
    border-radius: 999px;
}
.badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge--on  { background: rgba(80,187,184,.14); color: #2f8a87; }
.badge--off { background: rgba(136,136,136,.16); color: #6c6c6c; }
.badge--err { background: rgba(200,72,72,.14); color: #b23b3b; }

/* ------------------------------------------------------------------ Flashes */

.flash {
    border-radius: var(--r-sm);
    padding: 13px 16px;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: .9rem;
    display: flex;
    gap: 10px;
    align-items: center;
    border: 1px solid transparent;
}
.flash::before { font-weight: 900; }
.flash--ok  { background: rgba(80,187,184,.12); color: #2f8a87; border-color: rgba(80,187,184,.3); }
.flash--ok::before  { content: "✓"; }
.flash--err { background: rgba(186,20,36,.08); color: var(--red); border-color: rgba(186,20,36,.25); }
.flash--err::before { content: "!"; }
.flash--warn { background: rgba(136,136,136,.12); color: #6c6c6c; border-color: rgba(136,136,136,.3); }
.flash--warn::before { content: "↻"; }

/* --------------------------------------------------------- Dashboard: hero */

.hero {
    position: relative;
    overflow: hidden;
    border-radius: var(--r);
    background: var(--grad-dark);
    background-image: var(--plus), var(--grad-dark);
    background-size: 34px 34px, cover;
    color: var(--white);
    padding: 38px clamp(24px, 4vw, 48px);
    margin-bottom: 22px;
    box-shadow: var(--shadow-lg);
}
.hero::before { /* teal glow bubble */
    content: "";
    position: absolute;
    width: 360px; height: 360px;
    right: -120px; top: -160px;
    background: radial-gradient(circle, rgba(80,187,184,.35), transparent 65%);
    pointer-events: none;
}
.hero::after { /* red glow bubble */
    content: "";
    position: absolute;
    width: 320px; height: 320px;
    right: 120px; bottom: -200px;
    background: radial-gradient(circle, rgba(186,20,36,.3), transparent 65%);
    pointer-events: none;
}
.hero__tiles {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(14px, 2vw, 26px);
}
.hero__tile {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px;
    padding: 20px clamp(16px, 1.6vw, 24px);
    min-width: 0;
}
.hero__tile .eyebrow { color: rgba(255,255,255,.55); }
.hero__figure {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.7rem, 2.6vw, 2.6rem);
    line-height: .95;
    margin: 8px 0;
    font-variant-numeric: tabular-nums;
}
.hero__figure .cur { font-size: .42em; color: rgba(255,255,255,.55); margin-left: .15em; vertical-align: super; }
.hero__delta { font-weight: 700; font-size: .92rem; }
.hero__delta--met   { color: var(--teal); }
.hero__delta--below { color: #ff8a94; }
.hero__mini { position: relative; height: 8px; border-radius: 5px; background: rgba(255,255,255,.12); margin-top: 14px; overflow: hidden; }
.hero__mini i { display: block; height: 100%; border-radius: 5px; }
.hero__mini--met   { background: var(--teal); }
.hero__mini--below { background: var(--red); }
.hero__mini--over { position: absolute; left: 0; top: 0; bottom: 0; background: rgba(255,255,255,.5); border-radius: 5px 0 0 5px; }
.hero__tilefoot { margin-top: 8px; font-size: .78rem; color: rgba(255,255,255,.45); font-variant-numeric: tabular-nums; }
.hero__hint { margin-top: 10px; font-size: .84rem; color: rgba(255,255,255,.6); }
.hero__hint a { color: #fff; text-decoration: underline; }

/* chart card */
.chart-wrap { position: relative; height: 360px; }
.doughnut-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 28px; align-items: center; }

/* Top-10 customer ranking charts */
.top-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 22px; }
.ranking-wrap { position: relative; height: 300px; }
@media (max-width: 860px) { .top-grid { grid-template-columns: 1fr; } }
.doughnut-canvas { position: relative; height: 280px; }
.doughnut-legend { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.doughnut-legend li { display: flex; align-items: center; gap: 10px; font-size: .9rem; }
.doughnut-legend .dot { width: 12px; height: 12px; border-radius: 3px; flex: none; }
.doughnut-legend .lbl { font-weight: 700; color: #313130; }
.doughnut-legend .amt { margin-left: auto; color: #888888; font-variant-numeric: tabular-nums; white-space: nowrap; }
@media (max-width: 720px) { .doughnut-wrap { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- Auth screen */

body.auth {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: var(--grad-dark);
    background-image: var(--plus), var(--grad-dark);
    background-size: 34px 34px, cover;
}
.auth-card {
    width: 100%;
    max-width: 380px;
    background: var(--white);
    border-radius: var(--r);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.auth-card::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0;
    height: 5px;
    background: var(--grad-brand);
}
.auth-card .brand__mark { color: var(--ink); font-size: 1.9rem; }
.auth-card .brand__product { color: var(--gray-mid); }
.auth-card .brand__product::before { background: var(--grad-brand); }
.auth-card h1 { font-size: 1.15rem; margin: 26px 0 20px; color: var(--ink); }
.auth-card button { width: 100%; justify-content: center; margin-top: 8px; padding: 13px; }
.auth-card label { margin-top: 14px; }

/* ----------------------------------------------------------------- Utilities */

.stack-gap > * + * { margin-top: 14px; }
.text-net { font-variant-numeric: tabular-nums; font-weight: 700; }

/* ---------------------------------------------------------------- Responsive */

@media (max-width: 860px) {
    body.app { grid-template-columns: 1fr; }
    .sidebar {
        position: static;
        height: auto;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px 16px;
        padding: 16px 20px;
    }
    .sidebar::after { width: 100%; height: 3px; top: auto; bottom: 0; }
    .brand { margin-bottom: 0; margin-right: auto; }
    .brand__product { display: none; }
    .nav { flex-direction: row; flex-wrap: wrap; gap: 4px; }
    .nav a { padding: 8px 12px; font-size: .76rem; }
    .nav a .dot { display: none; }
    .sidebar__foot { margin: 0; padding: 0; }
    .hero__tiles { grid-template-columns: 1fr; }
}

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

/* --------------------------------------------------- Confirm wizard (split) */

.wizard-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}
.wizard-pdf iframe {
    width: 100%;
    height: 78vh;
    min-height: 480px;
    border: 1px solid var(--gray-100);
    border-radius: var(--r);
    background: #fff;
    box-shadow: var(--shadow);
}
.recognized {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 14px;
    margin-bottom: 18px;
    background: var(--gray-50);
    border-left: 3px solid var(--teal);
    border-radius: var(--r-sm);
}
.recognized strong { font-size: 1.02rem; }

@media (max-width: 980px) {
    .wizard-split { grid-template-columns: 1fr; }
    .wizard-pdf iframe { height: 60vh; min-height: 360px; }
}

/* ----------------------------------------------------- Batch upload progress */

.batch-progress { margin-top: 18px; }
.batch-progress__bar {
    height: 8px;
    background: var(--gray-100);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 10px;
}
.batch-progress__bar span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--grad-brand);
    transition: width .25s ease;
}
.batch-progress__status { font-weight: 700; margin: 0 0 4px; }
.batch-progress .btn { margin-top: 12px; }

/* ------------------------------------------------------------------- Modal */
dialog.modal {
    border: none;
    border-radius: var(--r);
    padding: 0;
    width: min(1100px, 92vw);
    max-width: 92vw;
    box-shadow: var(--shadow-lg);
}
dialog.modal::backdrop { background: rgba(49,49,48,.45); }
.modal__body { padding: 24px 26px; max-height: 88vh; overflow-y: auto; }
.modal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.modal__split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 22px; align-items: start; }
.modal__pdf iframe {
    width: 100%;
    height: 70vh;
    min-height: 420px;
    border: 1px solid var(--gray-100);
    border-radius: var(--r);
    background: #fff;
}
.modal__info { margin: 0 0 18px; }
.modal__info > div { display: flex; justify-content: space-between; gap: 16px; padding: 6px 0; border-bottom: 1px solid var(--gray-100); }
.modal__info dt { color: var(--gray-mid); font-weight: 700; font-size: .82rem; }
.modal__info dd { margin: 0; font-variant-numeric: tabular-nums; }
@media (max-width: 760px) { .modal__split { grid-template-columns: 1fr; } }

/* Rechnungstyp-Toggle (gestylte Radios, ein Wert aktiv) */
.type-toggle {
    display: inline-flex;
    border: 1px solid rgba(49,49,48,.18);
    border-radius: var(--r-sm);
    overflow: hidden;
}
.type-toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.type-toggle label {
    padding: 7px 16px;
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    color: var(--ink-soft);
    background: var(--white);
    user-select: none;
    transition: background .12s ease, color .12s ease;
}
.type-toggle label + input + label {
    border-left: 1px solid rgba(49,49,48,.18);
}
.type-toggle input:checked + label {
    background: var(--ink);
    color: var(--white);
}
.type-toggle input:focus-visible + label {
    outline: 2px solid var(--teal);
    outline-offset: -2px;
}

/* Kleiner Typ-Indikator in der Rechnungsübersicht */
.badge--service {
    background: rgba(80,187,184,.16);
    color: #2f8a87;
}
.type-tag {
    font-size: 12px;
    color: var(--gray-mid);
}

/* Dashboard: Jahres-Kennzahlen über dem Verlauf-Diagramm */
.year-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin: 0 0 18px;
    padding: 0 2px;
}
.year-stat__figure {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--ink);
    line-height: 1.1;
    margin-top: 2px;
}
.year-stat__figure .cur {
    font-size: 16px;
    color: var(--ink-soft);
    margin-left: 2px;
}
.year-stat__split {
    font-size: 12px;
    color: var(--gray-mid);
    margin-top: 4px;
}
