/* ============================================================
   SYSTEMCAP — style.css
   Dashboard Simulador de Plataformas · Universidad de Pamplona
   ============================================================ */

/* ----- RESET & BASE ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:         #0d0f14;
    --surface:    #141720;
    --surface-2:  #1c2030;
    --border:     #252b3b;
    --border-2:   #2e3650;
    --text:       #e2e8f8;
    --text-muted: #6b7a9e;
    --text-dim:   #3d4868;
    --accent:     #00d4a0;
    --accent-dim: #00d4a018;
    --accent-2:   #7c6dff;
    --danger:     #ff6b6b;
    --warn:       #ffa94d;
    --ok:         #00d4a0;
    --radius:     8px;
    --radius-lg:  14px;
    --font-ui:    'Space Grotesk', system-ui, sans-serif;
    --font-mono:  'JetBrains Mono', 'Fira Mono', monospace;
    --header-h:   60px;
}

html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-ui);
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { color: inherit; text-decoration: none; }
code { font-family: var(--font-mono); font-size: 0.875em; }

/* ----- HEADER ----- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(13, 15, 20, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-icon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    width: 22px;
    height: 22px;
}
.logo-dot {
    background: var(--accent);
    border-radius: 2px;
    transition: opacity 0.3s;
}
.logo-dot:nth-child(2) { opacity: 0.6; }
.logo-dot:nth-child(3) { opacity: 0.4; }
.logo-dot:nth-child(4) { opacity: 0.2; }
.logo-text {
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 0.12em;
    color: var(--text);
}
.logo-text strong { color: var(--accent); }

/* Nav */
.main-nav {
    display: flex;
    gap: 4px;
    flex: 1;
}
.nav-link {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s;
}
.nav-link:hover { color: var(--text); background: var(--surface); }
.nav-link.active { color: var(--accent); background: var(--accent-dim); }

/* Header status */
.header-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
}
.header-status { font-size: 12px; color: var(--text-muted); font-family: var(--font-mono); }
.pulse-ring {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(0,212,160,0.4);
    animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(0,212,160,0.4); }
    70%  { box-shadow: 0 0 0 8px rgba(0,212,160,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,212,160,0); }
}

/* ----- MAIN / DASHBOARD ----- */
.dashboard, .module-page {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

/* Hero Banner */
.hero-banner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 48px 40px;
    margin-bottom: 36px;
    background: linear-gradient(135deg, var(--surface) 0%, #0f1320 100%);
    position: relative;
    overflow: hidden;
}
.hero-banner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(0,212,160,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-eyebrow {
    display: block;
    font-size: 11px;
    font-family: var(--font-mono);
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 12px;
    font-family: var(--font-mono);
}
.hero-title .accent { color: var(--accent); }
.hero-sub {
    font-size: 15px;
    color: var(--text-muted);
}
.hero-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--accent);
    font-family: var(--font-mono);
    flex-shrink: 0;
    padding-bottom: 4px;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.status-dot.active { animation: pulse 2s ease-out infinite; }

/* Module Cards Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.module-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.module-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(0,212,160,0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s;
}
.module-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.module-card:hover::before { opacity: 1; }
.module-card[data-module="memoria"]:hover { border-color: var(--accent-2); }
.module-card[data-module="memoria"]::before { background: radial-gradient(ellipse at top right, rgba(124,109,255,0.05), transparent 60%); }
.module-card[data-module="raid"]:hover { border-color: #4ec9ff; }
.module-card[data-module="raid"]::before { background: radial-gradient(ellipse at top right, rgba(78,201,255,0.05), transparent 60%); }

.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}
.card-icon {
    width: 40px; height: 40px;
    background: var(--surface-2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}
.card-icon svg { width: 20px; height: 20px; }
.module-card[data-module="memoria"] .card-icon { color: var(--accent-2); }
.module-card[data-module="raid"] .card-icon { color: #4ec9ff; }
.card-tag {
    font-size: 10px;
    font-family: var(--font-mono);
    color: var(--text-muted);
    background: var(--surface-2);
    padding: 3px 8px;
    border-radius: 4px;
}
.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
}
.card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.card-badge {
    font-size: 11px;
    font-family: var(--font-mono);
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid rgba(0,212,160,0.2);
}
.module-card[data-module="memoria"] .card-badge { background: rgba(124,109,255,0.1); color: var(--accent-2); border-color: rgba(124,109,255,0.2); }
.module-card[data-module="raid"] .card-badge { background: rgba(78,201,255,0.1); color: #4ec9ff; border-color: rgba(78,201,255,0.2); }
.card-arrow {
    font-size: 18px;
    color: var(--text-dim);
    transition: all 0.2s;
    align-self: flex-end;
}
.module-card:hover .card-arrow { color: var(--accent); transform: translateX(4px); }

/* Info strip */
.info-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.info-item {
    flex: 1;
    min-width: 160px;
    padding: 16px 24px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.info-item:last-child { border-right: none; }
.info-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.info-value { font-family: var(--font-mono); font-size: 13px; }

/* ----- MODULE PAGE ----- */
.module-header {
    margin-bottom: 36px;
}
.breadcrumb {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-family: var(--font-mono);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; color: var(--text-dim); }
.module-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.module-icon {
    font-size: 1.4rem;
    color: var(--accent);
}
.module-desc { font-size: 14px; color: var(--text-muted); max-width: 640px; }

/* Module layout: sidebar + results */
.module-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 24px;
    align-items: start;
}

/* ----- INPUT PANEL ----- */
.input-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: calc(var(--header-h) + 16px);
}
.sim-form { display: flex; flex-direction: column; gap: 20px; }
.form-section { display: flex; flex-direction: column; gap: 8px; }
.form-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}
.label-hint { font-weight: 400; text-transform: none; letter-spacing: 0; opacity: 0.8; }
.form-input, .form-textarea {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 13px;
    padding: 10px 12px;
    width: 100%;
    transition: border-color 0.2s;
    resize: vertical;
}
.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,212,160,0.1);
}
.form-hint {
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}
.form-hint code { color: var(--accent); }

/* Algorithm / strategy toggles */
.algo-toggle, .strategy-select {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.toggle-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 13px;
    transition: all 0.15s;
}
.toggle-option:hover { border-color: var(--border-2); background: var(--surface-2); }
.toggle-option input[type="radio"] { accent-color: var(--accent); }
.toggle-option:has(input:checked) { border-color: var(--accent); background: var(--accent-dim); color: var(--accent); }

/* Simulate button */
.btn-simulate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--accent);
    color: #0d0f14;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 4px;
}
.btn-simulate svg { width: 14px; height: 14px; }
.btn-simulate:hover { background: #00edb2; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,212,160,0.3); }
.btn-simulate:active { transform: translateY(0); }

/* ----- RESULTS PANEL ----- */
.results-panel { display: flex; flex-direction: column; gap: 24px; }
.result-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.result-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.subtitle-badge {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--accent-dim);
    color: var(--accent);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
}

/* ----- GANTT ----- */
.gantt-wrapper {
    padding-bottom: 28px;
    position: relative;
}
.gantt-chart {
    display: flex;
    height: 52px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.gantt-block {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    position: relative;
    border-right: 2px solid var(--bg);
}
.gantt-block:hover { filter: brightness(1.15); }
.gantt-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: rgba(0,0,0,0.75);
    white-space: nowrap;
    overflow: hidden;
}
.gantt-timeline {
    position: relative;
    height: 24px;
    margin-top: 4px;
}
.gantt-tick {
    position: absolute;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    top: 4px;
}

/* ----- DATA TABLE ----- */
.table-wrapper { overflow-x: auto; }
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.data-table th {
    text-align: left;
    padding: 10px 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    white-space: nowrap;
}
.data-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 13px;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--surface-2); }
.data-table .highlight { color: var(--accent); font-weight: 600; }
.data-table .row-highlight td { background: rgba(0,212,160,0.04); }
.data-table .row-disabled td { color: var(--text-dim); }
.avg-row td { color: var(--text-muted); font-size: 12px; }

.proc-badge {
    font-family: var(--font-mono);
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
}

/* ----- STATUS BADGES ----- */
.status-badge {
    font-size: 11px;
    font-family: var(--font-mono);
    padding: 3px 8px;
    border-radius: 4px;
}
.status-badge.ok      { background: rgba(0,212,160,0.12); color: var(--ok); }
.status-badge.warn    { background: rgba(255,169,77,0.12); color: var(--warn); }
.status-badge.neutral { background: var(--surface-2); color: var(--text-muted); }

/* ----- ALERTS ----- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 13px;
    line-height: 1.6;
    border-left: 3px solid;
}
.alert-error { background: rgba(255,107,107,0.08); border-color: var(--danger); color: #ffaaaa; }
.alert-warn  { background: rgba(255,169,77,0.08); border-color: var(--warn); color: #ffd49d; }
.alert-ok    { background: rgba(0,212,160,0.08); border-color: var(--ok); color: #7efad6; }

/* ----- EMPTY STATE ----- */
.empty-state {
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: var(--text-muted);
}
.empty-icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    color: var(--text-dim);
}
.empty-icon svg { width: 100%; height: 100%; }
.empty-state h3 { font-size: 16px; color: var(--text); margin-bottom: 8px; }
.empty-state p { font-size: 13px; }
.empty-state strong { color: var(--accent); }

/* ----- MEMORY MAP ----- */
.memory-map {
    display: flex;
    gap: 6px;
    height: 280px;
    align-items: flex-end;
    padding: 12px 0;
}
.mem-block {
    flex: 1;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s;
    min-width: 40px;
    position: relative;
}
.mem-block.assigned {
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(0,212,160,0.15);
}
.mem-block-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 4px;
    position: relative;
}
.mem-label { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); }
.mem-size  { font-family: var(--font-mono); font-size: 9px; color: var(--text-dim); margin-bottom: 4px; }
.mem-proc-bar {
    width: 100%;
    background: var(--accent);
    opacity: 0.8;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}
.mem-proc-label { font-family: var(--font-mono); font-size: 9px; color: rgba(0,0,0,0.8); }
.mem-frag-bar {
    width: 100%;
    background: repeating-linear-gradient(45deg, rgba(255,169,77,0.3), rgba(255,169,77,0.3) 3px, transparent 3px, transparent 8px);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.mem-frag-label { font-family: var(--font-mono); font-size: 9px; color: var(--warn); }
.mem-legend {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.legend-item {
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
}
.legend-item::before {
    content: '';
    width: 12px; height: 12px;
    border-radius: 3px;
}
.legend-item.assigned::before { background: var(--accent); }
.legend-item.free::before { background: var(--surface-2); border: 1px solid var(--border); }
.legend-item.frag::before {
    background: repeating-linear-gradient(45deg, rgba(255,169,77,0.5), rgba(255,169,77,0.5) 3px, transparent 3px, transparent 7px);
    border: 1px solid var(--warn);
}

/* ----- RAID CARDS ----- */
.raid-summary {
    display: flex;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.summary-stat {
    flex: 1;
    padding: 16px 20px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.summary-stat:last-child { border-right: none; }
.summary-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.summary-value { font-family: var(--font-mono); font-size: 16px; font-weight: 600; }
.summary-value.mono { font-family: var(--font-mono); }

.raid-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.raid-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    border-top: 3px solid var(--raid-color, var(--border));
    transition: border-color 0.2s, box-shadow 0.2s;
}
.raid-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.raid-card-disabled { opacity: 0.45; }
.raid-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}
.raid-name {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 16px;
    display: block;
    color: var(--raid-color, var(--text));
}
.raid-alias { font-size: 11px; color: var(--text-muted); }
.raid-usable {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--raid-color, var(--text));
}
.raid-bar-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.raid-bar {
    flex: 1;
    height: 6px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}
.raid-bar-fill { height: 100%; border-radius: 4px; transition: width 0.6s ease; }
.raid-bar-pct { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); flex-shrink: 0; }
.raid-meta { display: flex; flex-direction: column; gap: 8px; }
.raid-detail { display: flex; gap: 8px; align-items: baseline; flex-wrap: wrap; }
.detail-label { font-size: 11px; color: var(--text-muted); flex-shrink: 0; }
.detail-val { font-family: var(--font-mono); font-size: 12px; }
.raid-desc { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* Disk preview in RAID form */
.raid-preview { padding: 8px 0; }
.disk-viz {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    min-height: 48px;
    align-items: center;
}
.disk-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--accent);
}
.disk-unit svg { width: 20px; height: 24px; }
.disk-unit span { font-family: var(--font-mono); font-size: 9px; color: var(--text-muted); }
.disk-more {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    padding: 4px;
}

/* ----- FOOTER ----- */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    margin-top: auto;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.footer-left { display: flex; flex-direction: column; gap: 4px; }
.footer-logo { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; }
.footer-logo strong { color: var(--accent); }
.footer-caption { font-size: 11px; color: var(--text-muted); }
.footer-center {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: center;
}
.footer-center a { font-size: 13px; color: var(--text-muted); }
.footer-center a:hover { color: var(--accent); }
.footer-right {
    display: flex;
    flex-direction: column;
    text-align: right;
    gap: 2px;
}
.footer-right span { font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); }

/* ----- RESPONSIVE ----- */
@media (max-width: 860px) {
    .module-layout { grid-template-columns: 1fr; }
    .input-panel { position: static; }
    .hero-banner { flex-direction: column; align-items: flex-start; gap: 20px; padding: 32px; }
    .raid-cards { grid-template-columns: 1fr; }
    .main-nav .nav-link { padding: 6px 10px; }
}
@media (max-width: 600px) {
    .hero-banner { padding: 24px; }
    .hero-title { font-size: 2rem; }
    .dashboard, .module-page { padding: 24px 16px 40px; }
    .memory-map { height: 180px; }
    .raid-summary { flex-direction: column; }
    .summary-stat { border-right: none; border-bottom: 1px solid var(--border); }
    .info-strip { flex-direction: column; }
    .info-item { border-right: none; border-bottom: 1px solid var(--border); }
}
