/* IronClad Dashboard — style.css
   Dark theme, responsive sidebar layout, severity badges.
   No external dependencies — pure CSS. */

/* =====================================================================
   1. CSS Custom Properties (tokens)
   ===================================================================== */
:root {
  --bg:          #0f1117;
  --bg-2:        #161b27;
  --bg-3:        #1e2535;
  --bg-4:        #252d40;
  --border:      #2a3347;
  --text:        #e2e8f0;
  --text-2:      #94a3b8;
  --text-3:      #64748b;
  --primary:     #3b82f6;
  --primary-h:   #2563eb;
  --success:     #22c55e;
  --warning:     #f59e0b;
  --danger:      #ef4444;
  --orange:      #f97316;
  --info:        #06b6d4;
  --sidebar-w:   220px;
  --topbar-h:    54px;
  --radius:      8px;
  --radius-sm:   4px;
  --shadow:      0 2px 8px rgba(0,0,0,.45);
  --transition:  .18s ease;
  --font-mono:   "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
}

/* =====================================================================
   2. Reset & Base
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
code { font-family: var(--font-mono); font-size: .85em;
       background: var(--bg-3); padding: 1px 5px; border-radius: var(--radius-sm); }
small { font-size: .8em; color: var(--text-2); }

/* =====================================================================
   3. Layout — sidebar + topbar + main
   ===================================================================== */
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--bg-2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  z-index: 200;
  transition: transform var(--transition);
}

.topbar {
  position: fixed;
  top: 0;
  left: var(--sidebar-w);
  right: 0;
  height: var(--topbar-h);
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 12px;
  z-index: 100;
}

.main-content {
  margin-left: var(--sidebar-w);
  margin-top: var(--topbar-h);
  padding: 24px;
  min-height: calc(100vh - var(--topbar-h));
}

/* =====================================================================
   4. Sidebar internals
   ===================================================================== */
.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 16px 14px;
  border-bottom: 1px solid var(--border);
}
.brand-icon { font-size: 22px; }
.brand-text { font-size: 16px; font-weight: 700; letter-spacing: .02em; }

.sidebar-nav { flex: 1; padding: 12px 8px; display: flex; flex-direction: column; gap: 2px; }

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-2);
  font-size: 13.5px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.nav-item:hover { background: var(--bg-3); color: var(--text); text-decoration: none; }
.nav-item.active { background: var(--bg-4); color: var(--text);
  box-shadow: inset 3px 0 0 var(--primary); }
.nav-icon { font-size: 15px; width: 20px; text-align: center; flex-shrink: 0; }
.nav-label { flex: 1; }
.nav-badge {
  background: var(--danger); color: #fff;
  font-size: 10px; font-weight: 700;
  border-radius: 999px; padding: 1px 6px;
}
.nav-dot {
  width: 7px; height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.3; } }

.sidebar-footer {
  padding: 12px 16px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.server-pill {
  font-size: 11px; font-family: var(--font-mono);
  background: var(--bg-3); border-radius: var(--radius-sm);
  padding: 3px 8px; color: var(--text-2);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.btn-logout {
  background: none; border: 1px solid var(--border);
  color: var(--text-2); font-size: 12px;
  padding: 5px 10px; border-radius: var(--radius-sm);
  cursor: pointer; width: 100%;
  transition: background var(--transition);
}
.btn-logout:hover { background: var(--bg-3); color: var(--text); }

/* Sidebar mobile toggle */
.sidebar-toggle {
  display: none;
  background: none; border: none;
  color: var(--text); font-size: 20px;
  cursor: pointer; padding: 4px 8px;
}
@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .sidebar-toggle { display: block; }
  .topbar { left: 0; }
  .main-content { margin-left: 0; }
}

/* =====================================================================
   5. Topbar internals
   ===================================================================== */
.topbar-title { font-size: 15px; font-weight: 600; flex: 1; }
.topbar-status { display: flex; align-items: center; gap: 10px; }
.topbar-time { font-family: var(--font-mono); font-size: 12px; color: var(--text-3); }

.status-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-3);
}
.pill-green { border-color: var(--success); background: #052e1622; color: var(--success); }
.pill-red   { border-color: var(--danger);  background: #2d0a0a22; color: var(--danger); }

.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--text-3); display: inline-block; }
.dot-green { background: var(--success); animation: pulse 2s infinite; }
.dot-red   { background: var(--danger); }

/* =====================================================================
   6. Cards
   ===================================================================== */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.card-header {
  padding: 14px 18px 10px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.card-title { font-size: 14px; font-weight: 600; }
.card-body  { padding: 16px 18px; }
.card-score { max-width: 220px; }
.card-danger-zone { border-color: #3a1a1a; }
.center { text-align: center; }

/* =====================================================================
   7. Score ring
   ===================================================================== */
.score-ring-wrap { position: relative; width: 120px; height: 120px; margin: 0 auto 10px; }
.score-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-bg   { fill: none; stroke: var(--bg-4); stroke-width: 10; }
.ring-fill { fill: none; stroke: var(--success); stroke-width: 10;
             stroke-linecap: round;
             stroke-dasharray: 314.16;
             stroke-dashoffset: 314.16;
             transition: stroke .4s; }
.score-inner {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.score-value { font-size: 28px; font-weight: 700; color: var(--success); }
.score-label { font-size: 11px; color: var(--text-3); }
.score-title { font-weight: 600; margin-bottom: 2px; }
.score-sub   { font-size: 12px; color: var(--text-2); }

/* =====================================================================
   8. Metrics grid
   ===================================================================== */
.metrics-row { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  flex: 1;
  min-width: 260px;
}
.metric-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.metric-card-red { border-color: var(--danger); }
.metric-value { font-size: 26px; font-weight: 700; }
.metric-label { font-size: 11px; color: var(--text-2); margin-top: 2px; }

/* =====================================================================
   9. Section headers
   ===================================================================== */
.section-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.section-title { font-size: 14px; font-weight: 600; }
.section-sub   { font-size: 12px; color: var(--text-3); }
.section-link  { font-size: 12px; color: var(--primary); margin-left: auto; }
.mt-24 { margin-top: 24px; }
.mt-8  { margin-top: 8px; }

/* =====================================================================
   10. Modules grid
   ===================================================================== */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.module-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex; align-items: flex-start; gap: 10px;
}
.mod-ok   { border-left: 3px solid var(--success); }
.mod-fail { border-left: 3px solid var(--danger); }
.mod-skip { border-left: 3px solid var(--text-3); }
.mod-icon { font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.mod-info { flex: 1; min-width: 0; }
.mod-name { font-weight: 600; font-size: 13px; }
.mod-msg  { font-size: 11px; color: var(--text-2); white-space: nowrap;
            overflow: hidden; text-overflow: ellipsis; }
.mod-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }
.mod-time { font-size: 10px; color: var(--text-3); }

/* Detail cards (modules page) */
.modules-detail-grid {
  display: flex; flex-direction: column; gap: 10px;
}
.module-detail-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.module-detail-card.mod-ok   { border-left: 4px solid var(--success); }
.module-detail-card.mod-fail { border-left: 4px solid var(--danger); }
.module-detail-card.mod-skip { border-left: 4px solid var(--text-3); }
.mdc-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.mdc-status-icon { font-size: 16px; flex-shrink: 0; }
.mdc-title  { font-weight: 600; font-size: 14px; flex: 1; }
.mdc-badges { display: flex; gap: 5px; flex-shrink: 0; }
.mdc-run-btn { margin-left: auto; }
.mdc-desc { font-size: 12px; color: var(--text-2); margin-bottom: 4px; }
.mdc-msg  { font-size: 12px; color: var(--text-3); font-style: italic; }

/* =====================================================================
   11. Tables
   ===================================================================== */
.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  text-align: left; font-size: 11px; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text-3);
  padding: 10px 14px; border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.data-table td {
  padding: 9px 14px; border-bottom: 1px solid var(--border);
  font-size: 13px; vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg-3); }
.empty-row   { text-align: center; color: var(--text-3); padding: 24px !important; }
.success-row { color: var(--success) !important; }
.path-cell   { max-width: 260px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.detail-cell { max-width: 200px; font-size: 12px; color: var(--text-2); }
.fix-cell    { max-width: 200px; font-size: 11px; color: var(--text-3);
               white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mono { font-family: var(--font-mono); font-size: .85em; }

/* =====================================================================
   12. Badges
   ===================================================================== */
.badge {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 600;
  padding: 2px 7px; border-radius: 999px;
  white-space: nowrap;
}
.badge-red    { background: #3a0a0a; color: #f87171; border: 1px solid #7f1d1d; }
.badge-orange { background: #3a1a05; color: #fb923c; border: 1px solid #7c2d12; }
.badge-yellow { background: #3a2a05; color: #fbbf24; border: 1px solid #78350f; }
.badge-blue   { background: #0a1a3a; color: #60a5fa; border: 1px solid #1e3a5f; }
.badge-green  { background: #0a2a0a; color: #4ade80; border: 1px solid #14532d; }
.badge-grey   { background: var(--bg-3); color: var(--text-3); border: 1px solid var(--border); }

/* =====================================================================
   13. Action bar
   ===================================================================== */
.action-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 16px; flex-wrap: wrap;
}
.action-bar-left, .action-bar-right {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.filter-bar {
  display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap;
}
.search-input { flex: 1; min-width: 160px; max-width: 320px; }
.filter-select { max-width: 160px; }

/* =====================================================================
   14. Severity boxes (malware page)
   ===================================================================== */
.severity-row {
  display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap;
}
.sev-box {
  flex: 1; min-width: 80px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 14px; text-align: center;
}
.sev-critical { border-color: #7f1d1d; }
.sev-high     { border-color: #7c2d12; }
.sev-medium   { border-color: #78350f; }
.sev-low      { border-color: #1e3a5f; }
.sev-info     { }
.sev-count { font-size: 22px; font-weight: 700; }
.sev-critical .sev-count { color: var(--danger); }
.sev-high     .sev-count { color: var(--orange); }
.sev-medium   .sev-count { color: var(--warning); }
.sev-low      .sev-count { color: var(--info); }
.sev-label { font-size: 11px; color: var(--text-2); margin-top: 2px; }

/* =====================================================================
   15. Log terminal
   ===================================================================== */
.log-card { margin-bottom: 0; }
.log-terminal {
  background: #080b12;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
  padding: 12px 16px;
  height: calc(100vh - var(--topbar-h) - 120px);
  min-height: 300px;
  overflow-y: auto;
  color: #94a3b8;
}
.log-placeholder { color: var(--text-3); }
.log-line   { display: flex; gap: 10px; padding: 1px 0; word-break: break-all; }
.log-crit   { color: #f87171; background: #1a060622; border-radius: 2px; padding: 1px 4px; }
.log-ok     { color: #4ade80; }
.log-seq    { color: var(--text-3); min-width: 36px; flex-shrink: 0; }
.log-ts     { color: #475569; min-width: 80px; flex-shrink: 0; font-size: 11px; }
.log-evt    { color: #93c5fd; font-weight: 600; min-width: 160px; flex-shrink: 0; }
.log-data   { color: #94a3b8; }

/* =====================================================================
   16. Buttons
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 14px; border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), opacity var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-primary  { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-h); text-decoration: none; }
.btn-danger   { background: #991b1b; color: #fca5a5; border-color: #7f1d1d; }
.btn-danger:hover { background: var(--danger); color: #fff; text-decoration: none; }
.btn-ghost    { background: transparent; color: var(--text-2); border-color: var(--border); }
.btn-ghost:hover { background: var(--bg-3); color: var(--text); text-decoration: none; }
.btn-full     { width: 100%; justify-content: center; }
.btn-sm       { padding: 5px 10px; font-size: 12px; }
.btn-xs       { padding: 3px 8px; font-size: 11px; }

/* =====================================================================
   17. Forms
   ===================================================================== */
.form-group { margin-bottom: 14px; }
.form-row { display: flex; gap: 12px; }
.form-row .form-group { flex: 1; }
.form-label { display: block; font-size: 12px; font-weight: 500;
              color: var(--text-2); margin-bottom: 5px; }
.form-input {
  width: 100%;
  background: var(--bg-3); border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px; border-radius: var(--radius-sm);
  font-size: 13px;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-input:focus { outline: none; border-color: var(--primary); }
.form-input::placeholder { color: var(--text-3); }
select.form-input { cursor: pointer; }

.toggle-label {
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer; font-size: 13px; color: var(--text-2);
  user-select: none;
}
.toggle-label input[type=checkbox] { width: 14px; height: 14px; accent-color: var(--primary); }

/* =====================================================================
   18. Alerts
   ===================================================================== */
.alert {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: 13px; margin-bottom: 14px;
}
.alert-danger  { background: #3a0a0a; border: 1px solid #7f1d1d; color: #fca5a5; }
.alert-success { background: #0a2a0a; border: 1px solid #14532d; color: #86efac; }

.help-text { font-size: 12px; color: var(--text-3); }

/* =====================================================================
   19. Toast notifications
   ===================================================================== */
#toast-container {
  position: fixed; bottom: 20px; right: 20px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 9999; pointer-events: none;
}
.toast {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  box-shadow: var(--shadow);
  pointer-events: all;
  transform: translateX(120%);
  transition: transform .3s ease, opacity .3s ease;
  min-width: 240px; max-width: 380px;
}
.toast-visible { transform: translateX(0); }
.toast-success { border-color: var(--success); background: #0a2a0a; color: #86efac; }
.toast-danger  { border-color: var(--danger);  background: #3a0a0a; color: #fca5a5; }
.toast-info    { border-color: var(--info);    background: #051a22; color: #67e8f9; }
.toast-icon  { flex-shrink: 0; }
.toast-msg   { flex: 1; }
.toast-close { background: none; border: none; color: inherit; cursor: pointer; font-size: 12px; padding: 0 0 0 4px; flex-shrink: 0; }

/* =====================================================================
   20. Confirm modal
   ===================================================================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  display: flex; align-items: center; justify-content: center;
  z-index: 9000;
}
.modal {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 28px;
  max-width: 420px; width: 90%;
  box-shadow: var(--shadow);
}
.modal h3 { margin-bottom: 10px; font-size: 16px; }
.modal p  { color: var(--text-2); margin-bottom: 20px; font-size: 13px; line-height: 1.5; }
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; }

/* =====================================================================
   21. Login page
   ===================================================================== */
.login-body { display: flex; align-items: center; justify-content: center; min-height: 100vh; }
.login-wrap { width: 100%; max-width: 380px; padding: 24px; }
.login-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow);
}
.login-brand { text-align: center; margin-bottom: 28px; }
.login-shield { font-size: 40px; display: block; margin-bottom: 6px; }
.login-brand h1 { font-size: 22px; letter-spacing: .05em; }
.login-brand p  { color: var(--text-3); font-size: 13px; }
.login-hint { text-align: center; font-size: 11px; color: var(--text-3); margin-top: 16px; }

/* =====================================================================
   22. Events list
   ===================================================================== */
.events-list { padding: 4px 0; }
.event-row   { display: flex; gap: 10px; padding: 7px 16px; border-bottom: 1px solid var(--border); }
.event-row:last-child { border-bottom: none; }
.event-warn   { border-left: 3px solid var(--warning); }
.event-danger { border-left: 3px solid var(--danger); color: #fca5a5; }
.event-info   { }
.event-ts   { color: var(--text-3); font-size: 11px; font-family: var(--font-mono); white-space: nowrap; }
.event-name { font-size: 12px; font-family: var(--font-mono); }

/* =====================================================================
   23. License page
   ===================================================================== */
.lic-grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px; }
.lic-field { display: flex; flex-direction: column; gap: 3px; }
.lic-key   { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); }
.lic-val   { font-size: 13px; word-break: break-all; }

/* =====================================================================
   24. Signature stats
   ===================================================================== */
.sig-stats-grid { display: flex; gap: 20px; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-val  { font-size: 20px; font-weight: 700; }
.stat-lbl  { font-size: 11px; color: var(--text-2); }

/* =====================================================================
   25. Danger zone
   ===================================================================== */
.flex-row  { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.flex-end  { display: flex; justify-content: flex-end; }
.dz-title  { font-weight: 600; color: var(--danger); }
.dz-sub    { font-size: 12px; color: var(--text-2); margin-top: 4px; }

/* =====================================================================
   26. Skeleton loader
   ===================================================================== */
.skeleton-row {
  height: 52px;
  background: linear-gradient(90deg, var(--bg-2) 25%, var(--bg-3) 50%, var(--bg-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius);
  margin-bottom: 8px;
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* =====================================================================
   27. Page section
   ===================================================================== */
.page-section { max-width: 100%; }

/* ===== External Scan page ===== */
.scan-opt { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--text-secondary, #a0a0b0); white-space: nowrap; }
.scan-note { color: var(--text-muted, #6a6a7a); font-size: 0.85rem; margin: 0 0 20px; }

.scan-summary-grid { display: grid; grid-template-columns: 220px 1fr; gap: 16px; margin-bottom: 20px; }
@media (max-width: 640px) { .scan-summary-grid { grid-template-columns: 1fr; } }

.scan-score-card { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; }
.score-ring {
  width: 120px; height: 120px; border-radius: 50%;
  display: flex; align-items: baseline; justify-content: center;
  background: conic-gradient(#22c55e 0deg, var(--border, #2a2a3a) 0deg);
  position: relative;
}
.score-ring::before {
  content: ""; position: absolute; inset: 10px; border-radius: 50%;
  background: var(--bg-card, #1a1a25);
}
.score-num { position: relative; font-size: 2rem; font-weight: 700; z-index: 1; }
.score-max { position: relative; font-size: 0.85rem; color: var(--text-muted, #6a6a7a); z-index: 1; }
.score-label { margin-top: 12px; font-size: 0.8rem; color: var(--text-muted, #6a6a7a); text-transform: uppercase; letter-spacing: 1px; }

.scan-meta-card .card-body { padding: 8px 4px; }
.meta-row { display: flex; justify-content: space-between; gap: 16px; padding: 8px 12px; border-bottom: 1px solid var(--border, #2a2a3a); }
.meta-row:last-child { border-bottom: none; }
.meta-k { color: var(--text-muted, #6a6a7a); font-size: 0.85rem; }
.meta-v { text-align: right; word-break: break-all; }
.muted { color: var(--text-muted, #6a6a7a); }
.badge-green { background: rgba(34,197,94,0.15); color: #22c55e; }
