/* HAIX Data Agents — zentrales Stylesheet */
:root {
    --hda-red: #cc0a2a;
    --hda-red-dark: #a30822;
    --hda-red-soft: #fef0f2;
    --hda-green: #16a34a;
    --hda-blue: #2563eb;
    --hda-amber: #d97706;
    --hda-bg: #f6f7f9;
    --hda-card: #ffffff;
    --hda-border: #e4e7ec;
    --hda-text: #1d2430;
    --hda-muted: #6b7280;
    --hda-radius: 10px;
    --hda-shadow: 0 1px 3px rgba(16,24,40,.08), 0 1px 2px rgba(16,24,40,.04);
    --topbar-h: 54px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--hda-bg); color: var(--hda-text); font-size: 14px; line-height: 1.5;
}
a { color: var(--hda-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Topbar + Shell ─────────────────────────────────────────────────── */
.hda-topbar {
    height: var(--topbar-h); background: #16181d; color: #fff;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 16px; position: sticky; top: 0; z-index: 50;
}
.hda-topbar-left { display: flex; align-items: center; gap: 12px; }
.hda-logo-img { height: 26px; width: auto; display: block; }
.hda-appname { font-weight: 600; }
.hda-crumb { color: #9aa3af; }
.hda-crumb::before { content: '›'; margin-right: 12px; color: #4b5563; }
.hda-topbar-right { display: flex; align-items: center; gap: 12px; }
.hda-user { color: #cbd2dc; font-size: 13px; }
.hda-badge { background: var(--hda-red); border-radius: 4px; font-size: 11px; padding: 1px 6px; margin-left: 4px; }
.hda-btn-ghost { background: transparent; color: #9aa3af; border: 1px solid #3a3f4a; border-radius: 6px; padding: 5px 12px; cursor: pointer; }
.hda-btn-ghost:hover { color: #fff; border-color: #6b7280; }
.hda-logout-form { margin: 0; }

.hda-shell { display: flex; min-height: calc(100vh - var(--topbar-h)); }
.hda-sidebar {
    width: 210px; flex-shrink: 0; background: #fff; border-right: 1px solid var(--hda-border);
    padding: 14px 8px; display: flex; flex-direction: column; gap: 2px;
}
.hda-nav-item { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 8px; color: var(--hda-text); font-weight: 500; }
.hda-nav-item:hover { background: var(--hda-bg); text-decoration: none; }
.hda-nav-item.active { background: var(--hda-red-soft); color: var(--hda-red); }
.hda-sidebar-footer { margin-top: auto; color: var(--hda-muted); font-size: 11px; padding: 8px 12px; }
.hda-main { flex: 1; padding: 22px; min-width: 0; }
body.hda-fullscreen .hda-main { padding: 0; }

/* ── Karten, Buttons, Formulare ─────────────────────────────────────── */
.hda-card { background: var(--hda-card); border: 1px solid var(--hda-border); border-radius: var(--hda-radius); box-shadow: var(--hda-shadow); padding: 18px; margin-bottom: 18px; }
.hda-card h2 { margin: 0 0 12px; font-size: 16px; }
.hda-grid { display: grid; gap: 14px; }
.hda-grid-4 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.hda-kpi { background: var(--hda-card); border: 1px solid var(--hda-border); border-radius: var(--hda-radius); padding: 14px 16px; }
.hda-kpi .l { color: var(--hda-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .4px; }
.hda-kpi .v { font-size: 22px; font-weight: 700; margin-top: 2px; }

.hda-btn { border: none; border-radius: 8px; padding: 9px 16px; font-weight: 600; cursor: pointer; font-size: 14px; }
.hda-btn-primary { background: var(--hda-red); color: #fff; }
.hda-btn-primary:hover { background: var(--hda-red-dark); }
.hda-btn-secondary { background: #eef0f3; color: var(--hda-text); }
.hda-btn-secondary:hover { background: #e2e5ea; }
.hda-btn-danger { background: #fee2e2; color: #b91c1c; }
.hda-btn-sm { padding: 4px 10px; font-size: 12px; border-radius: 6px; }
.hda-btn-block { width: 100%; }
button:disabled { opacity: .5; cursor: not-allowed; }

label { display: block; margin-bottom: 12px; font-weight: 500; }
input[type=text], input[type=email], input[type=password], input[type=number], textarea, select {
    width: 100%; padding: 9px 12px; border: 1px solid var(--hda-border); border-radius: 8px;
    font: inherit; margin-top: 4px; background: #fff;
}
input:focus, textarea:focus, select:focus { outline: 2px solid rgba(204,10,42,.25); border-color: var(--hda-red); }
.hda-alert { border-radius: 8px; padding: 10px 14px; margin-bottom: 14px; font-size: 13px; }
.hda-alert-error { background: #fee2e2; color: #b91c1c; }
.hda-alert-ok { background: #dcfce7; color: #166534; }
.hda-alert-warn { background: #fef3c7; color: #92400e; }

/* ── Tabellen ───────────────────────────────────────────────────────── */
.hda-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.hda-table th { text-align: left; padding: 8px 10px; border-bottom: 2px solid var(--hda-border); color: var(--hda-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .3px; }
.hda-table td { padding: 8px 10px; border-bottom: 1px solid var(--hda-border); vertical-align: middle; }
.hda-table tr:hover td { background: #fafbfc; }
.hda-table-wrap { overflow-x: auto; }
.hda-tag { display: inline-block; border-radius: 5px; padding: 1px 8px; font-size: 11px; font-weight: 600; }
.hda-tag-green { background: #dcfce7; color: #166534; }
.hda-tag-red { background: #fee2e2; color: #b91c1c; }
.hda-tag-gray { background: #eef0f3; color: var(--hda-muted); }
.hda-tag-blue { background: #dbeafe; color: #1e40af; }
.hda-tag-amber { background: #fef3c7; color: #92400e; }

.hda-budget-bar { background: #eef0f3; border-radius: 6px; height: 10px; overflow: hidden; min-width: 120px; }
.hda-budget-bar > div { height: 100%; background: var(--hda-green); border-radius: 6px; }
.hda-budget-bar > div.warn { background: var(--hda-amber); }
.hda-budget-bar > div.over { background: var(--hda-red); }

/* ── Login ──────────────────────────────────────────────────────────── */
.hda-login-body { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: linear-gradient(140deg, #1b1d24 0%, #2a1218 100%); }
.hda-login-card { background: #fff; border-radius: 14px; padding: 36px; width: 380px; max-width: 92vw; box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.hda-login-logo { background: var(--hda-red); display: inline-block; padding: 8px 12px; border-radius: 8px; margin-bottom: 12px; }
.hda-login-logo img { height: 30px; width: auto; display: block; }
.hda-login-card h1 { margin: 0 0 4px; font-size: 20px; }
.hda-login-sub { color: var(--hda-muted); margin: 0 0 20px; }
.hda-login-footer { color: var(--hda-muted); font-size: 12px; text-align: center; margin-top: 18px; }

/* ══ Agent-UI (index.php) ═══════════════════════════════════════════ */
.ga { display: flex; height: calc(100vh - var(--topbar-h)); overflow: hidden; }
.ga-chats { width: 250px; flex-shrink: 0; background: #fff; border-right: 1px solid var(--hda-border); display: flex; flex-direction: column; }
.ga-chats-head { padding: 12px; border-bottom: 1px solid var(--hda-border); }
.ga-chats-hint { font-size: 11px; color: var(--hda-muted); margin-top: 6px; }
.ga-chats-list { flex: 1; overflow-y: auto; padding: 8px; }
.ga-chats-toggle { display: none; border: 1px solid var(--hda-border); background: #fff; border-radius: 8px; padding: 4px 10px; font-size: 16px; cursor: pointer; }
.ga-chats-close { display: none; border: 1px solid var(--hda-border); background: #fff; border-radius: 8px; padding: 6px 12px; font-size: 14px; cursor: pointer; color: var(--hda-muted); }
.ga-chats-backdrop { display: none; }
.ga-group-label { font-size: 11px; text-transform: uppercase; color: var(--hda-muted); letter-spacing: .4px; margin: 12px 6px 4px; }
.ga-chat-item { display: flex; align-items: center; gap: 6px; padding: 7px 8px; border-radius: 8px; cursor: pointer; font-size: 13px; }
.ga-chat-item:hover { background: var(--hda-bg); }
.ga-chat-item.active { background: var(--hda-red-soft); }
.ga-chat-item .t { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ga-chat-item .actions { display: none; gap: 2px; }
.ga-chat-item:hover .actions { display: flex; }
.ga-chat-item .actions button { background: none; border: none; cursor: pointer; font-size: 13px; padding: 0 3px; opacity: .6; }
.ga-chat-item .actions button:hover { opacity: 1; }
.ga-chat-item .star-on { color: #eab308; opacity: 1 !important; }
.ga-folder-row { display: flex; align-items: center; gap: 5px; padding: 6px 8px; border-radius: 8px; cursor: pointer; font-size: 13px; font-weight: 600; }
.ga-folder-row:hover { background: var(--hda-bg); }
.ga-folder-children { margin-left: 14px; border-left: 1px dashed var(--hda-border); padding-left: 4px; }
.ga-run-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hda-green); animation: hda-pulse 1.4s infinite; flex-shrink: 0; }
@keyframes hda-pulse { 50% { opacity: .3; } }

.ga-main { flex: 1; overflow-y: auto; min-width: 0; }
.ga-inner { max-width: 1080px; margin: 0 auto; padding: 26px 30px 80px; }

/* Idle-Screen */
.ga-eyebrow { color: var(--hda-red); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 1.2px; }
.ga-title { font-size: 26px; font-weight: 800; margin: 6px 0 4px; }
.ga-sub { color: var(--hda-muted); margin-bottom: 22px; }
.ga-mode-cards { display: flex; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.ga-mode-card { flex: 1; min-width: 240px; border: 2px solid var(--hda-border); background: #fff; border-radius: 12px; padding: 16px; cursor: pointer; }
.ga-mode-card:hover { border-color: #c9ced8; }
.ga-mode-card.sel { border-color: var(--hda-red); background: var(--hda-red-soft); }
.ga-mode-card h3 { margin: 0 0 4px; font-size: 15px; }
.ga-mode-card p { margin: 0; color: var(--hda-muted); font-size: 12.5px; }
.ga-mode-card .eta { display: inline-block; margin-top: 8px; font-size: 11px; font-weight: 700; color: var(--hda-red); background: #fff; border: 1px solid var(--hda-border); border-radius: 5px; padding: 1px 7px; }

.ga-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.ga-chip { border: 1.5px solid var(--hda-border); background: #fff; border-radius: 999px; padding: 6px 14px; cursor: pointer; font-size: 13px; font-weight: 500; user-select: none; }
.ga-chip.on { border-color: var(--hda-red); background: var(--hda-red-soft); color: var(--hda-red); }
.ga-chip:disabled { opacity: .5; cursor: not-allowed; }
.ga-chip-hint { color: var(--hda-muted); font-size: 12px; margin-bottom: 16px; }
/* Einklappbare Datenquellen-Kategorien */
.ga-cat { border: 1px solid var(--hda-border); border-radius: 10px; background: #fff; margin-bottom: 6px; }
.ga-cat-head { display: flex; align-items: center; gap: 8px; padding: 8px 12px; cursor: pointer; user-select: none; }
.ga-cat-head:hover { background: var(--hda-bg); border-radius: 10px; }
.ga-cat-caret { color: var(--hda-muted); width: 12px; }
.ga-cat-name { font-weight: 600; font-size: 13px; }
.ga-cat-count { font-size: 11px; font-weight: 700; color: var(--hda-muted); background: var(--hda-bg);
    border-radius: 999px; padding: 1px 8px; }
.ga-cat-count.active { background: var(--hda-red-soft); color: var(--hda-red); }
.ga-cat-all { margin-left: auto; border: none; background: none; color: var(--hda-blue); font-size: 11.5px; cursor: pointer; }
.ga-cat-all:hover { text-decoration: underline; }
.ga-cat-body { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 12px 12px 32px; }
.ga-cat-body[hidden] { display: none; } /* display:flex würde das hidden-Attribut sonst überschreiben */

.ga-deep-opts { background: #fff; border: 1px solid var(--hda-border); border-radius: 10px; padding: 12px 14px; margin-bottom: 14px; display: none; }
.ga-deep-opts.visible { display: block; }
.ga-drop { border: 2px dashed var(--hda-border); border-radius: 10px; padding: 12px; text-align: center; color: var(--hda-muted); cursor: pointer; margin-top: 8px; font-size: 12.5px; }
.ga-drop.over { border-color: var(--hda-red); background: var(--hda-red-soft); }
.ga-attach-chip { display: inline-flex; align-items: center; gap: 6px; background: #eef2ff; color: #3730a3; border-radius: 6px; padding: 3px 10px; font-size: 12px; margin-top: 8px; }

.ga-qbox { display: flex; gap: 8px; align-items: flex-end; background: #fff; border: 1.5px solid var(--hda-border); border-radius: 14px; padding: 10px 12px; box-shadow: var(--hda-shadow); }
.ga-qbox:focus-within { border-color: var(--hda-red); }
.ga-qbox textarea { border: none; outline: none; resize: none; flex: 1; font: inherit; max-height: 220px; min-height: 24px; padding: 4px 2px; margin: 0; }
.ga-qbox textarea:focus { outline: none; }
.ga-icon-btn { background: #eef0f3; border: none; border-radius: 9px; width: 38px; height: 38px; font-size: 16px; cursor: pointer; flex-shrink: 0; }
.ga-icon-btn:hover { background: #e2e5ea; }
.ga-send { background: var(--hda-red); color: #fff; }
.ga-send:hover { background: var(--hda-red-dark); }

/* Loading */
.ga-loading { text-align: center; padding: 60px 0; display: none; }
.ga-loading.visible { display: block; }
.ga-spinner { width: 44px; height: 44px; border: 4px solid var(--hda-border); border-top-color: var(--hda-red); border-radius: 50%; margin: 0 auto 16px; animation: hda-spin 1s linear infinite; }
@keyframes hda-spin { to { transform: rotate(360deg); } }
.ga-loading-label { font-weight: 700; font-size: 16px; }
.ga-loading-sub { color: var(--hda-muted); font-size: 13px; margin-top: 4px; }
.ga-narration { position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%); background: #16181d; color: #e5e7eb; border-radius: 10px; padding: 10px 18px; max-width: 720px; font-size: 12.5px; box-shadow: 0 8px 30px rgba(0,0,0,.35); display: none; z-index: 90; }

/* Aktivitäts-Feed */
.ga-activity { width: 290px; flex-shrink: 0; background: #181820; color: #d5d9e0; display: none; flex-direction: column; }
.ga-activity.visible { display: flex; }
.ga-act-head { padding: 12px 14px; border-bottom: 1px solid #262633; font-weight: 700; font-size: 13px; }
.ga-act-feed { flex: 1; overflow-y: auto; padding: 10px 12px; font-size: 12px; }
.ga-act-item { border-left: 2px solid #3b3b4d; padding: 5px 10px; margin-bottom: 6px; }
.ga-act-item.running { border-color: var(--hda-amber); }
.ga-act-item.done { border-color: var(--hda-green); }
.ga-act-item .n { font-weight: 600; color: #fff; }
.ga-act-item .m { color: #8b91a0; font-size: 11px; }
.ga-act-foot { padding: 10px 14px; border-top: 1px solid #262633; font-size: 12px; display: flex; gap: 8px; align-items: center; }
.ga-status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--hda-amber); animation: hda-pulse 1.2s infinite; }

/* Progress/Timer in Topbar-Ersatz */
.ga-statusbar { display: flex; align-items: center; gap: 12px; padding: 10px 30px; border-bottom: 1px solid var(--hda-border); background: #fff; position: sticky; top: 0; z-index: 10; }
.ga-statusbar .grow { flex: 1; }
.ga-prog { width: 180px; height: 6px; background: var(--hda-border); border-radius: 3px; overflow: hidden; display: none; }
.ga-prog > div { height: 100%; width: 0%; background: var(--hda-red); transition: width .8s; }
.ga-timer { font-variant-numeric: tabular-nums; background: #16181d; color: #fff; border-radius: 6px; padding: 3px 10px; font-size: 12px; display: none; }

/* ══ Report-Rendering (LLM-Output-Klassen) ═══════════════════════════ */
.report { background: #fff; border: 1px solid var(--hda-border); border-radius: 14px; padding: 30px 34px; margin-bottom: 20px; box-shadow: var(--hda-shadow); }
.report-topbar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.report-topbar .q { font-weight: 700; font-size: 16px; flex: 1; min-width: 200px; }
.report-meta-line { color: var(--hda-muted); font-size: 12px; margin-bottom: 18px; }
.r-summary-box { background: linear-gradient(135deg, #fef6f7, #fff); border: 1px solid #f3ccd3; border-radius: 12px; padding: 18px 20px; margin-bottom: 20px; }
.r-score-ring { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; width: 92px; height: 92px; border-radius: 50%; border: 6px solid var(--hda-red); margin-right: 16px; float: left; background: #fff; }
.r-score-value { font-size: 26px; font-weight: 800; color: var(--hda-red); }
.r-score-label { font-size: 10px; text-transform: uppercase; color: var(--hda-muted); }
.r-section { margin: 22px 0; clear: both; }
.r-h2 { font-size: 19px; margin: 26px 0 10px; border-bottom: 2px solid var(--hda-red-soft); padding-bottom: 6px; }
.r-h3 { font-size: 15px; margin: 18px 0 8px; }
.r-kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin: 14px 0; }
.r-kpi { border: 1px solid var(--hda-border); border-radius: 10px; padding: 12px 14px; background: #fafbfc; }
.r-kpi.positive { border-left: 4px solid var(--hda-green); }
.r-kpi.negative { border-left: 4px solid var(--hda-red); }
.r-kpi.warning { border-left: 4px solid var(--hda-amber); }
.r-kpi.neutral { border-left: 4px solid #94a3b8; }
.r-kpi-label { display: block; font-size: 11px; text-transform: uppercase; color: var(--hda-muted); letter-spacing: .4px; }
.r-kpi-value { display: block; font-size: 20px; font-weight: 800; margin: 2px 0; }
.r-kpi-delta { display: block; font-size: 12px; color: var(--hda-muted); }
.r-insight, .r-warning, .r-success, .r-action { border-radius: 10px; padding: 12px 16px; margin: 10px 0; border-left: 4px solid; }
.r-insight { background: #eff6ff; border-color: var(--hda-blue); }
.r-warning { background: #fef2f2; border-color: var(--hda-red); }
.r-success { background: #f0fdf4; border-color: var(--hda-green); }
.r-action { background: #fffbeb; border-color: var(--hda-amber); }
.r-table-wrap, .r-chart { margin: 14px 0; }
table.r-table { width: 100%; border-collapse: collapse; font-size: 13px; display: block; overflow-x: auto; }
table.r-table thead { background: #f3f4f6; }
table.r-table th { text-align: left; padding: 8px 10px; border-bottom: 2px solid var(--hda-border); white-space: nowrap; }
table.r-table td { padding: 7px 10px; border-bottom: 1px solid var(--hda-border); }
table.r-table.r-table-compact { font-size: 11.5px; }
table.r-table.r-table-compact td, table.r-table.r-table-compact th { padding: 4px 6px; }
.r-priority-list { counter-reset: prio; padding-left: 0; list-style: none; }
.r-priority-list li { counter-increment: prio; position: relative; padding: 10px 14px 10px 46px; background: #fafbfc; border: 1px solid var(--hda-border); border-radius: 10px; margin-bottom: 8px; }
.r-priority-list li::before { content: counter(prio); position: absolute; left: 12px; top: 10px; width: 24px; height: 24px; border-radius: 50%; background: var(--hda-red); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.r-methodology li { margin-bottom: 4px; color: var(--hda-muted); }
.r-chart canvas { max-width: 100%; }
.r-py-img { max-width: 100%; border: 1px solid var(--hda-border); border-radius: 10px; margin: 10px 0; }
.r-meta { color: var(--hda-muted); font-size: 12px; }

/* Upload-Overlay (zentrierter Fortschritt: Hochladen → DSGVO-Prüfung) */
.ga-upload-overlay { display: none; position: fixed; inset: 0; background: rgba(15,18,25,.45); z-index: 120; align-items: center; justify-content: center; }
.ga-upload-overlay.open { display: flex; }
.ga-upload-card { background: #fff; border-radius: 14px; padding: 28px 32px 22px; width: 400px; max-width: 90vw; box-shadow: 0 20px 60px rgba(0,0,0,.35); text-align: center; }
.ga-upload-name { font-weight: 600; font-size: 14px; margin-bottom: 12px; word-break: break-all; }
.ga-upload-bar { height: 8px; background: #e5e9ef; border-radius: 999px; overflow: hidden; margin-bottom: 10px; }
.ga-upload-bar > div { height: 100%; width: 0; background: var(--hda-blue); border-radius: 999px; transition: width .15s; }
.ga-upload-bar.indet > div { width: 40% !important; animation: hda-indet 1.2s ease-in-out infinite; }
@keyframes hda-indet { 0% { margin-left: -40%; } 100% { margin-left: 100%; } }
.ga-upload-status { font-size: 12.5px; color: var(--hda-muted); }

/* Follow-up */
.ga-followup { margin-top: 6px; }
.ga-followup-suggest { display: inline-block; background: #eef2ff; color: #3730a3; border: 1px dashed #a5b4fc; border-radius: 999px; padding: 6px 14px; font-size: 12.5px; cursor: pointer; margin-bottom: 10px; }
.ga-followup-suggest:hover { background: #e0e7ff; }

@media (max-width: 980px) {
    .ga-chats { position: fixed; left: 0; top: var(--topbar-h); bottom: 0; z-index: 60; transform: translateX(-100%); transition: transform .2s; }
    .ga-chats.open { transform: none; box-shadow: 0 0 24px rgba(0,0,0,.25); }
    .ga-chats-toggle { display: inline-block; }
    /* ✕ neben "Neue Analyse", Hinweistext darunter über volle Breite */
    .ga-chats-head { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
    .ga-chats-close { display: inline-block; order: 2; }
    .ga-chats-head .hda-btn-block { flex: 1; width: auto; }
    .ga-chats-hint { flex-basis: 100%; margin-top: 0; }
    .ga-chats-backdrop.open { display: block; position: fixed; inset: var(--topbar-h) 0 0 0; z-index: 59; background: rgba(0,0,0,.35); }
    .ga-activity { display: none !important; }
    /* Sidebar mobil auf Icons schrumpfen statt ausblenden (bleibt einzige Navigation) */
    .hda-sidebar { width: 52px; padding: 14px 6px; }
    .hda-nav-item { font-size: 0; justify-content: center; padding: 10px 0; }
    .hda-nav-item span { font-size: 17px; }
    .hda-sidebar-footer { display: none; }
}

/* ── Prompt-Helper (🧭): fertige Prompts im Report ─────────────────── */
.report-body pre.r-prompt {
    white-space: pre-wrap;
    background: #f6f8fa;
    border: 1px solid #d5dbe2;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 12.5px;
    line-height: 1.55;
    margin: 8px 0 4px;
}
