/* ══════════════════════════════════════════════════════════════
   DASHBOARD — Screentext AI
   Design tokens: same palette as home.css / style.css
   --primary:var(--color-tint)  (green)
   --secondary: var(--color-tint) (blue)
   Background: var(--color-surface-elevated) → var(--color-surface-elevated)
══════════════════════════════════════════════════════════════ */

/* ─── Layout reset for dashboard ─────────────────────────── */
.dash-body {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ─── Shared gradient text ───────────────────────────────── */
.gradient-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color:transparent;
}

/* ─── Sidebar ────────────────────────────────────────────── */
.sidebar {
    width: 240px;
    min-height: 100vh;
    background:var(--color-surface-elevated);
    backdrop-filter: blur(24px);
    border-right:1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 200;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-logo {
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    border-bottom:1px solid var(--color-border);
    box-sizing: border-box;
}

.nav-logo {
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-decoration: none;
    color:var(--color-text);
    display: flex;
    align-items: center;
}
.logo-ai {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color:transparent;
    margin-left: 0.25rem;
}

.sidebar-nav {
    padding: 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    overflow-y: auto;
}

/* Section labels: left-padded to match link icon start */
.sidebar-section-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color:var(--color-text-muted);
    padding: 0.6rem 0.85rem 0.25rem;
    margin-top: 0.5rem;
}

/* Each link: flex row, icon fixed-slot, then text */
.sidebar-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 0.62rem 0.85rem;
    border-radius: 10px;
    color:var(--color-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.18s ease;
    position: relative;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.sidebar-link:hover {
    background:var(--color-surface);
    color:var(--color-text);
}

.sidebar-link.active {
    background:var(--color-tint);
    color:var(--color-support);
    font-weight: 600;
}
.sidebar-link.active .sidebar-icon {
    color:var(--color-support);
}

/* Sign out: separator line above, no float to bottom */
.sidebar-link-logout {
    margin-top: 0.6rem;
    border-top:1px solid var(--color-border);
    padding-top: 0.85rem;
}
.sidebar-link-logout:hover {
    background:var(--color-danger-surface);
    color:var(--color-danger);
}

/* Icon: strict fixed-width slot — all labels start same x */
.sidebar-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;   /* never shrink */
    flex-shrink: 0;
    opacity: 0.85;
    display: block;
    margin-right: 0.65rem;   /* consistent gap between icon and label */
}

.sidebar-badge {
    margin-left: auto;
    background: var(--brand-gradient);
    color:var(--color-text);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 99px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ─── Main content area ─────────────────────────────────── */
.dash-main {
    margin-left: 240px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

/* ─── Top bar ───────────────────────────────────────────── */
.dash-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background:var(--color-surface-elevated);
    backdrop-filter: blur(24px);
    border-bottom:1px solid var(--color-border);
    height: 72px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-sizing: border-box;
}

.sidebar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background:none;
    border:none;
    cursor: pointer;
    padding: 4px;
}
.sidebar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background:var(--color-surface-elevated);
    border-radius: 2px;
    transition: all 0.25s;
}
.sidebar-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sidebar-toggle.active span:nth-child(2) { opacity: 0; }
.sidebar-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.topbar-left {
    flex: 1;
}
.topbar-title {
    font-size: 1.05rem;
    font-weight: 700;
    color:var(--color-text);
    margin: 0;
    line-height: 1;
}
.topbar-date {
    font-size: 0.75rem;
    color:var(--color-text-muted);
    display: block;
    margin-top: 0.15rem;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background:var(--color-surface);
    border:1px solid var(--color-border);
    border-radius: 10px;
    padding: 0.45rem 0.85rem;
    transition: border-color 0.2s;
}
.topbar-search:focus-within {
    border-color:var(--color-border);
}
.topbar-search svg {
    width: 15px; height: 15px;
    color:var(--color-text-muted);
    flex-shrink: 0;
}
.topbar-search input {
    background:none;
    border:none;
    outline:none;
    color:var(--color-text);
    font-size: 0.85rem;
    font-family: inherit;
    width: 160px;
}
.topbar-search input::placeholder { color:var(--color-text-muted); }

.topbar-user {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    cursor: pointer;
    padding: 0.4rem 0.65rem;
    border-radius: 12px;
    transition: background 0.23s cubic-bezier(0.4, 0, 0.2, 1);
}

.topbar-user:hover {
    background:var(--color-surface);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 210px;
    background:var(--color-surface-elevated);
    backdrop-filter: blur(20px);
    border:1px solid var(--color-border);
    border-radius: 14px;
    padding: 0.45rem;
    box-shadow:0 10px 40px var(--color-shadow);
    display: none;
    flex-direction: column;
    z-index: 500;
    animation: dropdownFade 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.topbar-user:hover .user-dropdown-menu {
    display: flex;
}

/* Spacer buffer to prevent hover drop when moving cursor */
.user-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    color:var(--color-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.15s ease;
}

.dropdown-item:hover {
    background:var(--color-surface);
    color:var(--color-text);
    transform: translateX(3px);
}

.dropdown-item svg {
    width: 15px;
    height: 15px;
    opacity: 0.7;
    transition: transform 0.2s;
}

.dropdown-item:hover svg {
    transform: scale(1.1);
    opacity: 1;
}

.dropdown-item.logout {
    color:var(--color-danger);
}

.dropdown-item.logout:hover {
    background:var(--color-danger-surface);
    color:var(--color-text);
}

.dropdown-divider {
    height: 1px;
    background:var(--color-surface);
    margin: 0.4rem 0.5rem;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.user-avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color:var(--color-text);
    flex-shrink: 0;
    overflow: hidden;
}
.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.user-name {
    font-size: 0.8rem;
    font-weight: 600;
    color:var(--color-text);
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.user-plan {
    font-size: 0.7rem;
    color:var(--color-support);
    font-weight: 500;
}

/* ─── Content padding ───────────────────────────────────── */
.dash-content {
    padding: 2rem 2.5rem 4rem;
    flex: 1;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}

/* ─── Welcome banner ────────────────────────────────────── */
.welcome-banner {
    background: var(--brand-gradient);
    border:1px solid var(--color-border);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}
.welcome-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--brand-gradient);
    pointer-events: none;
}

.welcome-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color:var(--color-support);
    margin-bottom: 0.6rem;
}
.pulse-dot {
    width: 7px; height: 7px;
    background:var(--color-tint);
    border-radius: 50%;
    box-shadow:0 0 0 0 var(--color-shadow);
    animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
    0%   { box-shadow:0 0 0 0 var(--color-shadow); }
    70%  { box-shadow:0 0 0 8px transparent; }
    100% { box-shadow:0 0 0 0 transparent; }
}

.welcome-headline {
    font-size: 1.7rem;
    font-weight: 800;
    color:var(--color-text);
    margin: 0 0 0.4rem;
    line-height: 1.2;
}
.welcome-sub {
    color:var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Orbit art */
.welcome-art { flex-shrink: 0; }
.orbit-ring {
    width: 110px; height: 110px;
    border:1.5px dashed var(--color-border);
    border-radius: 50%;
    position: relative;
    animation: spinOrbit 14s linear infinite;
}
@keyframes spinOrbit { to { transform: rotate(360deg); } }
.orbit-dot {
    position: absolute;
    font-size: 1.3rem;
    transform-origin: center;
    animation: counterSpin 14s linear infinite;
}
@keyframes counterSpin { to { transform: rotate(-360deg); } }
.dot-1 { top: -14px; left: 42px; }
.dot-2 { right: -14px; top: 42px; }
.dot-3 { bottom: -14px; left: 42px; }
.dot-4 { left: -14px; top: 42px; }

/* ─── Usage stats row ───────────────────────────────────── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background:var(--color-surface);
    border:1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}
.stat-card:hover {
    border-color:var(--color-border);
    transform: translateY(-2px);
}

.stat-icon {
    width: 36px; height: 36px;
    background:color-mix(in srgb, var(--icon-clr) 15%, transparent);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color:var(--icon-clr);
}
.stat-icon svg { width: 18px; height: 18px; }

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color:var(--color-text);
    line-height: 1;
}
.stat-max { font-size: 0.9rem; font-weight: 400; color:var(--color-text-muted); }
.stat-label { font-size: 0.75rem; color:var(--color-text-muted); }

.stat-bar {
    height: 3px;
    background:var(--color-surface);
    border-radius: 99px;
    margin-top: 0.25rem;
    overflow: hidden;
}
.stat-bar-fill {
    height: 100%;
    background:var(--bar-clr);
    border-radius: 99px;
    transition: width 1s cubic-bezier(0.4,0,0.2,1);
}

/* Upgrade card */
.stat-card-upgrade {
    background: var(--brand-gradient);
    border-color:var(--color-border);
    align-items: flex-start;
    justify-content: space-between;
}
.upgrade-glow {
    position: absolute;
    width: 120px; height: 120px;
    background: var(--brand-gradient);
    top: -40px; right: -40px;
    pointer-events: none;
}
.upgrade-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color:var(--color-text-muted);
    font-weight: 600;
}
.upgrade-plan {
    font-size: 1.4rem;
    font-weight: 800;
    color:var(--color-text);
    margin: 0.1rem 0 0.6rem;
}
.btn-upgrade {
    display: inline-block;
    background: var(--brand-gradient);
    color:var(--color-text);
    padding: 0.45rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
}
.btn-upgrade:hover { opacity: 0.88; transform: translateY(-1px); }

/* ─── Section headers ───────────────────────────────────── */
.section-header-row {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
}
.dash-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color:var(--color-text);
    margin: 0;
}
.dash-section-sub {
    font-size: 0.8rem;
    color:var(--color-text-muted);
}

/* ─── Tool tiles grid ───────────────────────────────────── */
.tools-grid-dash {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.tool-tile {
    background:var(--color-surface);
    border:1px solid var(--color-border);
    border-radius: 18px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.25s, transform 0.25s;
    --mx:50%; --my:50%;
    --glow-clr:var(--color-tint);
}

.tile-glow {
    position: absolute;
    inset: 0;
    background:radial-gradient(circle at var(--mx) var(--my), var(--glow-clr) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    border-radius: inherit;
}
.tool-tile:hover .tile-glow { opacity: 1; }
.tool-tile:hover {
    border-color:var(--color-border);
    transform: translateY(-3px);
}

.featured-tile {
    grid-column: span 2;
    background: var(--brand-gradient);
    border-color:var(--color-border);
}

.tile-icon {
    width: 44px; height: 44px;
    background:color-mix(in srgb, var(--t-color) 18%, transparent);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color:var(--t-color);
    flex-shrink: 0;
}
.tile-icon svg { width: 22px; height: 22px; }

.tile-name {
    font-size: 1rem;
    font-weight: 700;
    color:var(--color-text);
}
.tile-desc {
    font-size: 0.82rem;
    color:var(--color-text-muted);
    line-height: 1.55;
    flex: 1;
}
.tile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.25rem;
}
.tile-badge {
    background:var(--color-surface);
    border:1px solid var(--color-border);
    color:var(--color-text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 99px;
}

.tile-launch {
    align-self: flex-start;
    background:var(--color-surface);
    border:1px solid var(--color-border);
    color:var(--color-text-muted);
    padding: 0.45rem 1rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    margin-top: auto;
}
.tile-launch span { transition: transform 0.2s; display: inline-block; }
.tool-tile:hover .tile-launch {
    background:var(--color-tint);
    border-color:var(--color-border);
    color:var(--color-support);
}
.tool-tile:hover .tile-launch span { transform: translateX(3px); }

/* ─── Activity empty state ──────────────────────────────── */
.activity-empty {
    background:var(--color-surface);
    border:1px dashed var(--color-border);
    border-radius: 18px;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.activity-empty-icon { font-size: 2.5rem; margin-bottom: 0.25rem; }
.activity-empty-title {
    font-size: 1rem;
    font-weight: 700;
    color:var(--color-text-muted);
}
.activity-empty-sub {
    font-size: 0.83rem;
    color:var(--color-text-muted);
    max-width: 360px;
    margin-bottom: 0.75rem;
}
.btn-get-started {
    background: var(--brand-gradient);
    color:var(--color-text);
    border:none;
    padding: 0.6rem 1.4rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s, transform 0.2s;
}
.btn-get-started:hover { opacity: 0.88; transform: translateY(-1px); }
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.activity-item {
    background:var(--color-surface);
    border:1px solid var(--color-border);
    border-radius: 12px;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background 0.2s;
}
.activity-item:hover {
    background:var(--color-surface);
}
.activity-icon {
    font-size: 1.25rem;
}
.activity-details {
    flex: 1;
}
.activity-title {
    font-size: 0.9rem;
    font-weight: 600;
    color:var(--color-text);
}
.activity-time {
    font-size: 0.75rem;
    color:var(--color-text-muted);
}
.activity-amount {
    font-family: monospace;
    font-weight: 700;
    font-size: 0.95rem;
}
.activity-amount.neg { color:var(--color-danger); }
.activity-amount.pos { color:var(--color-support); }

/* ─── Reveal animation ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.45s ease, transform 0.45s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ─── Toast notification ────────────────────────────────── */
.dash-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background:var(--color-surface-elevated);
    backdrop-filter: blur(16px);
    border:1px solid var(--color-border);
    color:var(--color-text);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    box-shadow:0 20px 40px var(--color-shadow);
}
.dash-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1100px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .tools-grid-dash { grid-template-columns: repeat(2, 1fr); }
    .featured-tile { grid-column: span 2; }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.open {
        transform: translateX(0);
        box-shadow:0 0 0 100vw var(--color-shadow);
    }
    .sidebar-toggle { display: flex; }
    .dash-main { margin-left: 0; }
    .dash-topbar { padding: 0.85rem 1.25rem; }
    .topbar-search { display: none; }
    .user-info { display: none; }
    .dash-content { padding: 1.25rem 1rem 3rem; }
    .welcome-banner { flex-direction: column; padding: 1.5rem; }
    .welcome-art { display: none; }
    .welcome-headline { font-size: 1.3rem; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .tools-grid-dash { grid-template-columns: 1fr; }
    .featured-tile { grid-column: span 1; }
}

/* ─── Credit Guide ─────────────────────────────────────── */
.dash-credit-guide {
    margin-top: 3rem;
    padding: 1rem 1.5rem;
    background:var(--color-surface);
    border:1px dashed var(--color-border);
    border-radius: 12px;
    text-align: center;
    color:var(--color-text-muted);
    font-size: 0.85rem;
}
.dash-credit-guide strong {
    color:var(--color-support);
    margin-right: 0.5rem;
}

/* ─── Gallery Grid ───────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
.gallery-item {
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background:var(--color-surface);
    border:1px solid var(--color-border);
    transition: transform 0.3s ease, border-color 0.3s;
}
.gallery-item:hover {
    transform: translateY(-5px);
    border-color:var(--color-border);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background:linear-gradient(to top, var(--color-surface-elevated) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-prompt {
    color:var(--color-text);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Shared: Credits pill (topbar) ─────────────────────── */
.stat-pill {
    display: inline-flex;
    align-items: center;
    background:var(--color-tint);
    border:1px solid var(--color-border);
    color:var(--color-support);
    padding: 0.45rem 1rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s;
}
.stat-pill:hover {
    background:var(--color-tint);
    border-color:var(--color-border);
}

/* ─── Shared: Admin back button ─────────────────────────── */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background:var(--color-surface);
    border:1px solid var(--color-border);
    color:var(--color-text-muted);
    padding: 0.45rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.btn-back:hover {
    background:var(--color-surface);
    color:var(--color-text);
}
