/* CypherGoat Pro interface */

:root {
    --bg: #0b0d14;
    --bg-panel: #12151b;
    --bg-panel-hover: #161a22;
    --bg-raised: #0b0e13;
    --bg-soft: #151922;
    --border: #262c37;
    --border-strong: #383f4c;
    --text: #e7eaef;
    --text-strong: #f3f5f7;
    --muted: #9aa2b2;
    --muted-soft: #717887;
    --accent: #e7eaef;
    --accent-strong: #ffffff;
    --accent-dim: rgba(231, 234, 239, 0.07);
    --danger: #ff7a8a;
    --warning: #fbbf24;
    --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: "JetBrains Mono", "Fira Code", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

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

body {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05), transparent 28rem),
        var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; text-underline-offset: 0.18em; }
a:hover { color: var(--accent-strong); text-decoration: underline; }

/* ── Header ── */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 5.35rem;
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(11, 13, 20, 0.84);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    gap: 0.65rem;
    align-items: center;
    font-family: var(--font-sans);
}
.brand-logo {
    display: block;
    width: 1.9rem;
    height: 1.9rem;
    flex: 0 0 auto;
}
.brand-goat {
    color: var(--text-strong);
    font-size: 1.55rem;
    font-weight: 750;
    letter-spacing: -0.035em;
}
.brand-pro {
    color: var(--text);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);
    font-weight: 700;
    padding: 0.23rem 0.46rem;
    border-radius: 0.55rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.brand:hover { text-decoration: none; }

.topnav { display: flex; gap: 0.1rem; align-items: center; flex-wrap: wrap; }
.topnav a { color: var(--muted); }
.topnav a,
.link-button {
    display: inline-flex;
    align-items: center;
    min-height: 2.45rem;
    padding: 0.62rem 0.88rem;
    border-radius: 0.7rem;
    font-size: 0.88rem;
    font-weight: 550;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.topnav a:hover {
    color: var(--accent-strong);
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
}

.inline-form { display: inline; }
.link-button {
    background: none;
    border: none;
    color: var(--muted);
    font-family: inherit;
    cursor: pointer;
}
.link-button:hover {
    color: var(--danger);
    background: rgba(255, 122, 138, 0.06);
}

/* ── Layout ── */
.shell {
    width: 100%;
    max-width: 76rem;
    margin: 0 auto;
    padding: 1.75rem 1.25rem;
    flex: 1;
}

.panel {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0)),
        var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.5rem;
    margin-bottom: 1.15rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
    overflow: hidden;
}

.panel-title {
    font-size: 1.12rem;
    color: var(--text-strong);
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    font-weight: 650;
}

.muted { color: var(--muted); }
.small { font-size: 0.8rem; }
.muted.small, p.muted { margin: 0.5rem 0; }

.tag-nokyc, .tag-best {
    font-size: 0.72rem;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    letter-spacing: 0;
    background: rgba(255, 255, 255, 0.035);
    color: #cfd5df;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 650;
}

/* ── Forms ── */
.stack { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 0.9rem; }

.field { display: flex; flex-direction: column; gap: 0.3rem; }
.field label {
    font-size: 0.76rem;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 650;
}

input[type="text"], .mono-input {
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 0.95rem;
    padding: 0.86rem 1rem;
    outline: none;
    width: 100%;
}
input[type="text"]:focus {
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}
input::placeholder { color: #697284; }

.coin-input.has-coin-icon {
    background-repeat: no-repeat;
    background-position: 0.8rem center;
    background-size: 1.25rem 1.25rem;
    padding-left: 2.55rem;
}

.coin-picker-input {
    cursor: pointer;
}

.hidden-select {
    display: none;
}

.account-input {
    font-size: 1.3rem;
    letter-spacing: 0.12em;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 0.88rem 1rem;
    cursor: pointer;
    transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-primary:hover {
    background: var(--accent-strong);
    transform: translateY(-1px);
}
.btn-primary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.btn-trade {
    background: rgba(255, 255, 255, 0.025);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0;
    padding: 0.25rem 0.7rem;
    cursor: pointer;
}
.btn-trade:hover {
    background: rgba(255, 255, 255, 0.055);
    color: var(--accent-strong);
}

.btn-icon {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--text);
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 1rem;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.055);
    color: var(--accent-strong);
}

.swap-coins-btn {
    align-self: end;
}

.coin-icon {
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 999px;
    object-fit: contain;
    vertical-align: -0.22rem;
    margin-right: 0.35rem;
}

.coin-pair-line {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin-bottom: 0.45rem;
}

.coin-chip {
    display: inline-flex;
    align-items: center;
    min-height: 2.15rem;
    padding: 0.35rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text-strong);
    font-family: var(--font-mono);
    font-weight: 700;
}

.coin-chip .coin-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.45rem;
}

.swap-arrow {
    color: var(--muted);
}

.pair-form {
    display: grid;
    grid-template-columns: minmax(13rem, 1.35fr) auto minmax(13rem, 1.35fr) minmax(8rem, 0.8fr) auto;
    gap: 0.8rem;
    align-items: end;
}

@media (max-width: 860px) {
    .pair-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .swap-coins-btn { order: 3; width: 100%; }
    .pair-form .btn-primary { grid-column: 1 / -1; }
}

.coin-selection-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 6rem 1rem 1rem;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(8px);
}

.coin-selection-modal.hidden {
    display: none;
}

.modal-content {
    width: min(34rem, 100%);
    max-height: min(38rem, calc(100vh - 7rem));
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    background: var(--bg-panel);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

#modal-search {
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: var(--bg-raised);
}

.modal-options {
    overflow-y: auto;
    padding: 0.45rem;
}

.modal-options div {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 2.65rem;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    color: var(--text);
    cursor: pointer;
}

.modal-options div:hover,
.modal-options div.active-option {
    background: rgba(255, 255, 255, 0.055);
}

.modal-options img {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    object-fit: contain;
    flex: 0 0 auto;
}

/* ── Homepage ── */
.hero {
    text-align: center;
    padding: 3.5rem 1rem 2.5rem;
    max-width: 46rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 1.4rem;
}

.hero-title {
    font-size: 2.35rem;
    font-weight: 750;
    letter-spacing: -0.035em;
    line-height: 1.15;
    color: var(--text-strong);
    margin-bottom: 1rem;
}

.hero-sub {
    color: var(--muted);
    font-size: 1.02rem;
    max-width: 38rem;
    margin: 0 auto 1.75rem;
}

.hero-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.25rem;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.88rem 1.6rem;
}
a.btn-hero:hover { text-decoration: none; color: inherit; }
a.btn-primary.btn-hero { color: var(--bg); }
a.btn-primary.btn-hero:hover { color: var(--bg); }

.btn-ghost {
    background: rgba(255, 255, 255, 0.025);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-weight: 700;
    padding: 0.88rem 1rem;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.055);
    color: var(--accent-strong);
    transform: translateY(-1px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
        var(--bg-panel);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
    overflow: hidden;
}
.hero-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 1.15rem 1rem;
}
.hero-stat + .hero-stat { border-left: 1px solid rgba(255, 255, 255, 0.06); }
.stat-value {
    font-size: 1.45rem;
    font-weight: 750;
    letter-spacing: -0.02em;
    color: var(--text-strong);
}
.stat-label {
    font-size: 0.76rem;
    color: var(--muted);
    letter-spacing: 0.02em;
}
@media (max-width: 640px) {
    .hero-stats { flex-direction: column; }
    .hero-stat + .hero-stat {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    margin-bottom: 1.15rem;
}
.home-grid .panel { margin-bottom: 0; }
.home-card .panel-title { font-size: 1rem; margin-bottom: 0.5rem; }
@media (max-width: 980px) { .home-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) {
    .home-grid { grid-template-columns: 1fr; }
    .hero { padding: 2rem 0.5rem 1.75rem; }
    .hero-title { font-size: 1.75rem; }
}

.invite-panel { text-align: center; }
.invite-panel .panel-title { justify-content: center; }
.invite-panel > .muted { max-width: 36rem; margin-left: auto; margin-right: auto; }

.invite-steps {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    max-width: 30rem;
    margin: 1.4rem auto 1.6rem;
    text-align: left;
}
.invite-step {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text);
}
.step-num {
    flex: 0 0 auto;
    width: 1.8rem;
    height: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-strong);
    background: rgba(255, 255, 255, 0.03);
}
.invite-panel .hero-actions { margin-bottom: 0.25rem; }

.home-card {
    transition: border-color 0.18s ease, transform 0.18s ease;
}
.home-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

/* ── Landing FAQ ── */
.faq-panel .panel-title { justify-content: center; }
.faq-list {
    max-width: 44rem;
    margin: 0.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.faq-item {
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: border-color 0.18s ease, background 0.18s ease;
}
.faq-item:hover, .faq-item[open] {
    border-color: var(--border-strong);
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 1rem 1.15rem;
    color: var(--text-strong);
    font-weight: 650;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    flex: 0 0 auto;
    width: 1.6rem;
    height: 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--muted);
    transition: transform 0.18s ease, color 0.18s ease;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: var(--text-strong);
}
.faq-item summary:hover::after { color: var(--text-strong); }
.faq-item > p {
    margin: 0;
    padding: 0 1.15rem 1.05rem;
    text-align: left;
}

/* ── Auth pages ── */
.auth-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    margin-top: 1.25rem;
}
@media (max-width: 860px) { .auth-wrap { grid-template-columns: 1fr; } }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.feature-list li {
    border-left: 2px solid var(--border-strong);
    padding-left: 0.75rem;
}

.account-number-display {
    background: var(--bg-raised);
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 1.35rem;
    letter-spacing: 0.12em;
    padding: 1rem;
    text-align: center;
    margin: 1rem 0;
    user-select: all;
    word-break: break-all;
}

/* ── Rates table ── */
.rates-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 1rem;
    font-size: 0.88rem;
    overflow: hidden;
}
.rates-table th {
    text-align: left;
    color: var(--muted);
    font-weight: 650;
    font-size: 0.74rem;
    letter-spacing: 0;
    padding: 0.5rem 0.65rem;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.025);
}
.rates-table td {
    padding: 0.62rem 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.rates-table tr:last-child td { border-bottom: none; }
.best-row { background: rgba(255, 255, 255, 0.028); }
.amount-cell { color: var(--text-strong); }
.provider-cell { font-weight: 650; }
.mono-cell, .mono-link { font-family: var(--font-mono); }

.error-box {
    background: rgba(255, 122, 138, 0.08);
    border: 1px solid rgba(255, 122, 138, 0.32);
    border-radius: 12px;
    color: var(--danger);
    padding: 0.6rem 0.9rem;
    margin: 0.8rem 0;
}

.htmx-indicator { display: none; margin-top: 0.8rem; }
.htmx-request .htmx-indicator, .htmx-request.htmx-indicator { display: block; }

/* ── Trade page ── */
.trade-grid { display: flex; flex-direction: column; gap: 1rem; margin: 1rem 0; }
.trade-block label {
    font-size: 0.76rem;
    color: var(--muted);
    letter-spacing: 0;
    font-weight: 600;
}
.big-value {
    font-family: var(--font-mono);
    font-size: 1.35rem;
    color: var(--text);
}
.mono-box {
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.7rem;
    word-break: break-all;
    user-select: all;
    margin: 0.3rem 0 0.6rem;
}

.status-line { margin: 0.6rem 0; }
.status-badge {
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.15rem 0.6rem;
    font-size: 0.78rem;
    letter-spacing: 0;
    font-weight: 650;
}
.status-finished, .status-completed, .status-success {
    color: #dfe4ec;
    border-color: rgba(255, 255, 255, 0.24);
}
.status-failed, .status-refunded, .status-expired {
    color: var(--danger);
    border-color: var(--danger);
}

/* ── Chat ── */
.chat-log {
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem;
    margin: 1rem 0;
    max-height: 26rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chat-msg { display: flex; gap: 0.6rem; align-items: baseline; flex-wrap: wrap; }
.chat-sender {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0;
}
.chat-msg-staff .chat-sender { color: var(--accent); }
.chat-body { word-break: break-word; flex: 1; min-width: 12rem; }
.chat-time { color: var(--muted); font-size: 0.7rem; margin-left: auto; }

.chat-form { display: flex; gap: 0.8rem; }
.chat-form input { flex: 1; }

/* ── Not found ── */
.notfound {
    text-align: center;
    padding: 4.5rem 1rem;
    max-width: 34rem;
    margin: 0 auto;
}
.notfound-code {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 0.35em;
    color: var(--muted-soft);
    margin-bottom: 0.9rem;
}
.notfound-title { font-size: 1.9rem; margin-bottom: 0.6rem; }
.notfound .hero-actions { margin-top: 1.75rem; margin-bottom: 0; }

/* ── Footer ── */
.topnav a.nav-cta {
    color: var(--text-strong);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    margin-left: 0.35rem;
}
.topnav a.nav-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.foot-links { display: flex; gap: 1.1rem; }
.foot a { color: var(--muted); }
.foot a:hover { color: var(--accent-strong); }

.foot {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
        #0d1016;
    color: var(--muted);
    font-size: 0.78rem;
    flex-wrap: wrap;
}

/* Swap panel highlight */
.swap-panel {
    border-color: rgba(255, 255, 255, 0.14);
    margin-top: 1.2rem;
}

@media (max-width: 640px) {
    .topbar {
        align-items: flex-start;
        flex-direction: column;
        min-height: auto;
        padding: 1rem;
    }
    .brand-goat { font-size: 1.35rem; }
    .shell { padding: 0.85rem; }
    .panel { padding: 1rem; }
    .chat-form { flex-direction: column; }
    .rates-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* ── Nav unread badge ── */
.nav-badge {
    display: inline-block;
    margin-left: 0.35rem;
    background: var(--warning);
    color: var(--bg);
    border-radius: 999px;
    padding: 0 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.4;
    vertical-align: middle;
}

/* ── Admin invite tree ── */
.invite-tree, .invite-tree ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.invite-tree ul {
    margin-left: 0.6rem;
    padding-left: 1rem;
    border-left: 1px solid var(--border);
}
.invite-tree li {
    padding: 0.25rem 0;
}
.invite-tree li > .muted {
    margin-left: 0.5rem;
}

/* ── Chat usability ── */
.chat-body { white-space: pre-wrap; }
.chat-form { align-items: flex-end; }
.chat-input {
    resize: none;
    overflow-y: auto;
    line-height: 1.4;
    max-height: 140px;
}
.chat-hint { margin-top: 0.4rem; }
.chat-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 0.8rem 0 0; }
.chat-chip {
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    cursor: pointer;
}
.chat-chip:hover {
    color: var(--text);
    border-color: var(--border-strong);
    background: var(--bg-panel-hover);
}
