/* ===================================================================
   DENDAT Spectra — Signal Intelligence & Detection Platform
   Dark RF/Radar aesthetic with cyan/green accents
   =================================================================== */

:root {
    --bg-primary: #0a0c10;
    --bg-secondary: #0f1218;
    --bg-card: #141820;
    --bg-card-hover: #1a1f2a;
    --bg-input: #0d1017;
    --bg-sidebar: #0b0d12;

    --border: rgba(0, 255, 170, 0.08);
    --border-active: rgba(0, 255, 170, 0.25);
    --border-subtle: rgba(255, 255, 255, 0.04);

    --accent: #00ffaa;
    --accent-dim: rgba(0, 255, 170, 0.15);
    --accent-glow: rgba(0, 255, 170, 0.3);
    --cyan: #00d4ff;
    --cyan-dim: rgba(0, 212, 255, 0.15);
    --red: #ff3b3b;
    --red-dim: rgba(255, 59, 59, 0.15);
    --amber: #ffb020;
    --amber-dim: rgba(255, 176, 32, 0.15);
    --blue: #3b82f6;
    --blue-dim: rgba(59, 130, 246, 0.15);
    --purple: #a78bfa;
    --purple-dim: rgba(167, 139, 250, 0.15);

    --text: #e8eaed;
    --text-secondary: #8b95a5;
    --text-muted: #555e6e;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(0, 255, 170, 0.08);

    --sidebar-width: 240px;
    --topbar-height: 52px;
}

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

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: #33ffbb; }

/* ===================================================================
   LAYOUT
   =================================================================== */
.app-layout { display: flex; min-height: 100vh; }

/* --- Sidebar --- */
.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    overflow-y: auto;
}

.sidebar-brand {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-brand .brand-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent), var(--cyan));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.sidebar-brand .brand-text {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
}

.sidebar-brand .brand-sub {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sidebar-nav { padding: 12px 0; flex: 1; }

.nav-section {
    padding: 0 12px;
    margin-bottom: 6px;
}

.nav-section-title {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 10px 4px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s;
    cursor: pointer;
}

.nav-item:hover {
    background: var(--accent-dim);
    color: var(--text);
}

.nav-item.active {
    background: var(--accent-dim);
    color: var(--accent);
    border-left: 2px solid var(--accent);
}

.nav-item .material-icons {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.nav-badge {
    margin-left: auto;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.nav-badge.amber { background: var(--amber); color: #000; }
.nav-badge.accent { background: var(--accent); color: #000; }

/* Sidebar user */
.sidebar-user {
    padding: 14px 16px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-user .user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
}

.sidebar-user .user-info { flex: 1; min-width: 0; }
.sidebar-user .user-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sidebar-user .user-role {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Main content --- */
.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Topbar --- */
.topbar {
    height: var(--topbar-height);
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.topbar-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.topbar-spacer { flex: 1; }

.topbar-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-secondary);
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
    animation: pulse-dot 2s infinite;
}

.status-dot.offline { background: var(--red); box-shadow: 0 0 6px var(--red); }
.status-dot.warning { background: var(--amber); box-shadow: 0 0 6px var(--amber); }

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.topbar-clock {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 0.5px;
}

/* --- Page content --- */
.page-content {
    padding: 24px;
    flex: 1;
}

/* ===================================================================
   CARDS & PANELS
   =================================================================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: border-color 0.2s;
}

.card:hover { border-color: var(--border-active); }

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.card-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-title .material-icons { font-size: 18px; color: var(--accent); }

/* Stat cards */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-card .stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card .stat-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
}

.stat-card .stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    font-size: 16px;
}

.stat-card .stat-icon.green { background: var(--accent-dim); color: var(--accent); }
.stat-card .stat-icon.cyan { background: var(--cyan-dim); color: var(--cyan); }
.stat-card .stat-icon.red { background: var(--red-dim); color: var(--red); }
.stat-card .stat-icon.amber { background: var(--amber-dim); color: var(--amber); }
.stat-card .stat-icon.blue { background: var(--blue-dim); color: var(--blue); }
.stat-card .stat-icon.purple { background: var(--purple-dim); color: var(--purple); }

/* ===================================================================
   SPECTRUM DISPLAY
   =================================================================== */
.spectrum-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.spectrum-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.spectrum-toolbar label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spectrum-toolbar input,
.spectrum-toolbar select {
    background: var(--bg-input);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 4px;
    width: auto;
}

.spectrum-toolbar input:focus,
.spectrum-toolbar select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-dim);
}

.spectrum-canvas-wrap {
    position: relative;
    width: 100%;
    height: 300px;
    background: #050810;
}

.spectrum-canvas-wrap canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Waterfall display */
.waterfall-wrap {
    width: 100%;
    height: 200px;
    background: #020408;
    border-top: 1px solid var(--border-subtle);
}

.waterfall-wrap canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Frequency labels */
.freq-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-secondary);
    padding: 4px 8px;
}

.freq-readout {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--accent);
    padding: 2px 8px;
    background: rgba(0, 255, 170, 0.05);
    border-radius: 4px;
}

/* ===================================================================
   RADAR DISPLAY
   =================================================================== */
.radar-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 600px;
    margin: 0 auto;
}

.radar-scope {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, #0a1a0f 0%, #020808 70%, #010404 100%);
    border: 2px solid var(--accent-dim);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 255, 170, 0.05), inset 0 0 60px rgba(0, 255, 170, 0.02);
}

.radar-rings {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.radar-ring {
    position: absolute;
    border: 1px solid rgba(0, 255, 170, 0.08);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radar-ring:nth-child(1) { width: 25%; height: 25%; }
.radar-ring:nth-child(2) { width: 50%; height: 50%; }
.radar-ring:nth-child(3) { width: 75%; height: 75%; }
.radar-ring:nth-child(4) { width: 100%; height: 100%; }

.radar-crosshair {
    position: absolute;
    inset: 0;
}

.radar-crosshair::before,
.radar-crosshair::after {
    content: '';
    position: absolute;
    background: rgba(0, 255, 170, 0.06);
}

.radar-crosshair::before {
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
}

.radar-crosshair::after {
    top: 50%;
    left: 0;
    height: 1px;
    width: 100%;
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;
    transform-origin: left center;
    animation: radar-sweep 4s linear infinite;
}

.radar-sweep::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 200px;
    background: conic-gradient(from -10deg, transparent, rgba(0, 255, 170, 0.15) 20deg, transparent 30deg);
    transform-origin: left center;
}

@keyframes radar-sweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.radar-target {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.radar-target::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid;
    animation: target-pulse 2s infinite;
}

@keyframes target-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.8); opacity: 0; }
}

.radar-target.normal { background: var(--accent); }
.radar-target.normal::after { border-color: var(--accent); }
.radar-target.threat { background: var(--red); }
.radar-target.threat::after { border-color: var(--red); }
.radar-target.stealth { background: var(--amber); }
.radar-target.stealth::after { border-color: var(--amber); }
.radar-target.unknown { background: var(--purple); }
.radar-target.unknown::after { border-color: var(--purple); }

/* Target info tooltip */
.target-info {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 11px;
    min-width: 200px;
    z-index: 20;
    box-shadow: var(--shadow);
}

.target-info .ti-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 12px;
}

.target-info .ti-row {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
    color: var(--text-secondary);
}

.target-info .ti-value {
    font-family: var(--font-mono);
    color: var(--text);
}

/* ===================================================================
   TABLES
   =================================================================== */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.data-table th {
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
    position: sticky;
    top: 0;
}

.data-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.data-table tr:hover td {
    background: rgba(0, 255, 170, 0.02);
    color: var(--text);
}

.data-table .mono {
    font-family: var(--font-mono);
    font-size: 12px;
}

/* ===================================================================
   BADGES & TAGS
   =================================================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.badge.critical { background: var(--red-dim); color: var(--red); }
.badge.high { background: var(--amber-dim); color: var(--amber); }
.badge.medium { background: var(--blue-dim); color: var(--blue); }
.badge.low { background: rgba(255, 255, 255, 0.05); color: var(--text-muted); }
.badge.none { background: rgba(255, 255, 255, 0.03); color: var(--text-muted); }
.badge.stealth { background: var(--amber-dim); color: var(--amber); border: 1px solid rgba(255, 176, 32, 0.3); }
.badge.online { background: var(--accent-dim); color: var(--accent); }
.badge.offline { background: var(--red-dim); color: var(--red); }
.badge.active { background: var(--accent-dim); color: var(--accent); }
.badge.lost { background: rgba(255, 255, 255, 0.05); color: var(--text-muted); }
.badge.signal { background: var(--cyan-dim); color: var(--cyan); }

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-card);
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    font-family: var(--font);
}

.btn:hover { border-color: var(--border-active); background: var(--bg-card-hover); }

.btn .material-icons { font-size: 16px; }

.btn-primary {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    font-weight: 600;
}

.btn-primary:hover { background: #33ffbb; }

.btn-danger {
    background: var(--red-dim);
    color: var(--red);
    border-color: rgba(255, 59, 59, 0.2);
}

.btn-danger:hover { background: rgba(255, 59, 59, 0.2); }

.btn-sm { padding: 5px 10px; font-size: 12px; }

.btn-group {
    display: flex;
    gap: 6px;
}

/* ===================================================================
   FORMS
   =================================================================== */
.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.form-control {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font);
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: border-color 0.15s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-dim);
}

select.form-control { cursor: pointer; }

/* ===================================================================
   ALERT PANEL
   =================================================================== */
.alert-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    margin-bottom: 6px;
    background: var(--bg-card);
    transition: border-color 0.2s;
}

.alert-item:hover { border-color: var(--border-active); }

.alert-item.critical { border-left: 3px solid var(--red); }
.alert-item.high { border-left: 3px solid var(--amber); }
.alert-item.medium { border-left: 3px solid var(--blue); }

.alert-item .alert-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.alert-item.critical .alert-icon { background: var(--red-dim); color: var(--red); }
.alert-item.high .alert-icon { background: var(--amber-dim); color: var(--amber); }
.alert-item.medium .alert-icon { background: var(--blue-dim); color: var(--blue); }

.alert-item .alert-body { flex: 1; min-width: 0; }
.alert-item .alert-title { font-size: 13px; font-weight: 600; color: var(--text); }
.alert-item .alert-msg { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }
.alert-item .alert-time { font-size: 10px; color: var(--text-muted); font-family: var(--font-mono); margin-top: 4px; }

/* ===================================================================
   GRID LAYOUTS
   =================================================================== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.grid-sidebar { display: grid; grid-template-columns: 1fr 340px; gap: 16px; }

@media (max-width: 1200px) {
    .grid-2, .grid-3, .grid-sidebar { grid-template-columns: 1fr; }
}

/* ===================================================================
   SIGNAL LIST
   =================================================================== */
.signal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.15s;
}

.signal-item:hover { background: rgba(0, 255, 170, 0.02); }

.signal-item .sig-freq {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--cyan);
    min-width: 120px;
}

.signal-item .sig-power {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-secondary);
    min-width: 70px;
}

.signal-item .sig-class {
    font-size: 12px;
    color: var(--text);
    flex: 1;
}

/* ===================================================================
   MAP CONTAINER
   =================================================================== */
.map-container {
    width: 100%;
    height: 500px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

/* ===================================================================
   LOGIN PAGE
   =================================================================== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.login-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 255, 170, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
}

.login-card {
    position: relative;
    width: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-glow);
}

.login-card .login-brand {
    text-align: center;
    margin-bottom: 32px;
}

.login-card .login-brand .icon-circle {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, var(--accent), var(--cyan));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.login-card .login-brand h1 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.login-card .login-brand p {
    font-size: 12px;
    color: var(--text-muted);
}

.login-card .form-group { margin-bottom: 18px; }

.login-card .btn-primary {
    width: 100%;
    padding: 11px;
    font-size: 14px;
    justify-content: center;
}

.login-error {
    background: var(--red-dim);
    border: 1px solid rgba(255, 59, 59, 0.2);
    color: var(--red);
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 16px;
    text-align: center;
}

/* ===================================================================
   SCAN GRID
   =================================================================== */
.scan-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }

/* ===================================================================
   SCROLLBAR
   =================================================================== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.08); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.15); }

/* ===================================================================
   UTILITIES
   =================================================================== */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.text-mono { font-family: var(--font-mono); }
.text-accent { color: var(--accent); }
.text-cyan { color: var(--cyan); }
.text-red { color: var(--red); }
.text-amber { color: var(--amber); }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 12px; }
.text-xs { font-size: 11px; }
.fw-600 { font-weight: 600; }
.truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.w-full { width: 100%; }
.hidden { display: none !important; }
