/* web/static/css/app.css
   paindiary UI tokens + shell. Derived from the Aether Live design system
   (design-reference/colors_and_type.css) with the paindiary design's root
   overrides: the accent is GREEN (#2FD37B), not the DS pink. */

:root {
  /* accent — paindiary override */
  --live: #2FD37B;
  --live-press: #22B368;
  --live-soft: rgba(47, 211, 123, 0.16);
  --shadow-glow-live: 0 0 18px rgba(47, 211, 123, 0.5);

  /* surfaces */
  --ink-900: #000000;
  --ink-800: #0E0E10;
  --ink-700: #141416;
  --ink-600: #1C1C20;
  --ink-500: #2A2A30;

  /* glass */
  --glass: rgba(18, 18, 22, 0.46);
  --glass-strong: rgba(0, 0, 0, 0.55);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-blur: 18px;

  /* text */
  --fg1: #FFFFFF;
  --fg2: rgba(255, 255, 255, 0.72);
  --fg3: rgba(255, 255, 255, 0.50);
  --fg-onlight: #18181B;

  /* heat scale (body map + intensity badges) */
  --heat-0: #8BD46B;
  --heat-2: #FFC23F;
  --heat-4: #FF9A3D;
  --heat-6: #FF6B4A;
  --heat-8: #FF3B5C;

  /* status */
  --warn: #FF9A3D;
  --bad: #FF3B5C;
  --info: #4DA3FF;

  --font-ui: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
             system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --r-pill: 999px;
  --r-card: 18px;
  --r-input: 12px;
  --r-sheet: 26px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 140ms;
  --dur: 240ms;

  --sidebar-w: 236px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; background: var(--ink-800); }
body {
  font-family: var(--font-ui);
  color: var(--fg1);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 13px;
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 999px; border: 2px solid transparent; background-clip: padding-box; }
::-webkit-scrollbar-track, ::-webkit-scrollbar-corner { background: transparent; }
input[type=range] { accent-color: var(--live); }
textarea, input, button, select { font-family: inherit; }
textarea::placeholder, input::placeholder { color: rgba(255,255,255,0.34); }
a { color: var(--live); text-decoration: none; }

@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 14px); } to { opacity: 1; transform: translate(-50%, 0); } }
@keyframes livePulse { 0%, 100% { opacity: 0.5; transform: scale(0.85); } 50% { opacity: 1; transform: scale(1); } }
@keyframes sheetUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes panelIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes authIn { from { opacity: 0; transform: translateY(14px) scale(0.99); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ---------- app shell ---------- */
.app { display: flex; height: 100vh; height: 100dvh; overflow: hidden; }

.sidebar {
  width: var(--sidebar-w); flex: 0 0 var(--sidebar-w); height: 100%;
  display: flex; flex-direction: column; gap: 4px; padding: 18px 14px;
  background: var(--ink-900); border-right: 1px solid rgba(255,255,255,0.07);
}
.sidebar .brand { display: flex; align-items: center; gap: 10px; padding: 4px 8px 16px; }
.brand-orb {
  width: 30px; height: 30px; border-radius: 999px; flex: 0 0 30px;
  background: radial-gradient(circle at 34% 30%, var(--live), var(--live-press) 70%);
  box-shadow: var(--shadow-glow-live);
}
.brand-orb.pulse { animation: livePulse 2.4s var(--ease-out) infinite; }
.brand-name { font-weight: 800; font-size: 15.5px; letter-spacing: -0.02em; }
.brand-sub { font-size: 10px; color: var(--fg3); letter-spacing: 0.05em; text-transform: uppercase; }

.nav-item {
  display: flex; align-items: center; gap: 11px; padding: 9px 10px;
  border-radius: 11px; color: var(--fg2); font-weight: 600; font-size: 13.5px;
  border: 1px solid transparent; background: transparent; width: 100%;
  cursor: pointer; text-align: left; transition: background var(--dur-fast);
}
.nav-item:hover { background: rgba(255,255,255,0.05); color: var(--fg1); }
.nav-item.active { background: var(--live-soft); color: var(--live); border-color: rgba(47,211,123,0.25); }
.nav-item svg { flex: 0 0 20px; }
.nav-badge {
  margin-left: auto; background: var(--live); color: #04140b; font-size: 10.5px;
  font-weight: 800; border-radius: 999px; padding: 2px 7px; line-height: 1.3;
}
.sidebar-foot {
  margin-top: auto; padding: 12px; border-radius: 14px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); color: var(--fg3); font-size: 11px; line-height: 1.5;
  display: flex; gap: 9px; align-items: flex-start;
}
.sidebar-foot svg { flex: 0 0 16px; margin-top: 1px; color: var(--live); }
.sidebar-foot b { color: var(--fg2); }

.main { flex: 1; display: flex; flex-direction: column; min-width: 0; height: 100%; }

.header {
  flex: 0 0 auto; display: flex; align-items: center; gap: 14px;
  padding: 14px 26px; border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(14,14,16,0.88); backdrop-filter: blur(14px); z-index: 5;
}
.header-title { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.1; }
.header-sub { font-size: 11.5px; color: var(--fg3); margin-top: 2px; }
.header-right { margin-left: auto; display: flex; align-items: center; gap: 10px; position: relative; }
.seed-pill {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--warn); border: 1px solid rgba(255,154,61,0.4); background: rgba(255,154,61,0.12);
  padding: 4px 9px; border-radius: 999px;
}
.caring-pill {
  font-size: 11px; font-weight: 700; color: var(--info);
  border: 1px solid rgba(77,163,255,0.35); background: rgba(77,163,255,0.12);
  padding: 4px 10px; border-radius: 999px;
}
.avatar {
  width: 30px; height: 30px; border-radius: 999px; display: flex; align-items: center;
  justify-content: center; font-weight: 800; font-size: 13px; color: #04140b;
  background: linear-gradient(135deg, var(--live), var(--live-press)); flex: 0 0 30px;
}
.actor-btn {
  display: flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 999px; padding: 5px 12px 5px 6px;
  color: var(--fg1); font-weight: 700; font-size: 12.5px; cursor: pointer;
}
.actor-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 230px; z-index: 30;
  background: var(--ink-600); border: 1px solid rgba(255,255,255,0.12); border-radius: 15px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5); padding: 7px; animation: authIn 0.18s var(--ease-out);
}
.actor-menu a, .actor-menu button {
  display: flex; width: 100%; align-items: center; gap: 9px; padding: 9px 11px;
  border-radius: 10px; color: var(--fg1); background: none; border: none;
  font-weight: 600; font-size: 13px; cursor: pointer; text-align: left;
}
.actor-menu a:hover, .actor-menu button:hover { background: rgba(255,255,255,0.06); }
.menu-sep { height: 1px; background: rgba(255,255,255,0.08); margin: 6px 4px; }

.content { flex: 1; overflow-y: auto; padding: 24px 26px; }
.content-inner { margin: 0 auto; }
.w-1080 { max-width: 1080px; } .w-1000 { max-width: 1000px; } .w-860 { max-width: 860px; }
.w-820 { max-width: 820px; } .w-760 { max-width: 760px; }

.bottom-nav {
  display: none; flex: 0 0 auto; background: var(--ink-900);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
}
.bottom-nav .nav-item {
  flex-direction: column; gap: 3px; padding: 6px 2px; font-size: 9.5px; font-weight: 700;
  align-items: center; border-radius: 10px; flex: 1; position: relative;
}
.bottom-nav .nav-item svg { flex: 0 0 22px; }
.bottom-nav .nav-badge { position: absolute; top: -2px; right: 50%; margin: 0; transform: translateX(16px); }

/* ---------- cards / buttons / forms ---------- */
.card {
  background: var(--ink-700); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-card); padding: 18px;
}
.card + .card { margin-top: 14px; }
.card-title { font-size: 15px; font-weight: 800; letter-spacing: -0.01em; }
.card-sub { font-size: 12px; color: var(--fg3); margin-top: 3px; line-height: 1.5; }
.row { display: flex; align-items: center; gap: 10px; }
.grow { flex: 1; min-width: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 12px; padding: 10px 16px; font-weight: 800; font-size: 12.5px;
  cursor: pointer; border: 1px solid transparent; transition: background var(--dur-fast);
  color: var(--fg1); background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12); text-decoration: none;
}
.btn:hover { background: rgba(255,255,255,0.11); }
.btn-primary { background: var(--live); color: #04140b; border-color: var(--live); box-shadow: var(--shadow-glow-live); }
.btn-primary:hover { background: var(--live-press); }
.btn-danger { color: var(--bad); border-color: rgba(255,59,92,0.4); background: rgba(255,59,92,0.1); }
.btn-danger:hover { background: rgba(255,59,92,0.18); }
.btn-sm { padding: 7px 12px; font-size: 11.5px; border-radius: 9px; }
.btn-block { width: 100%; }

.input, textarea.input {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-input); color: var(--fg1); padding: 11px 13px; font-size: 13.5px;
  outline: none; transition: border-color var(--dur-fast);
}
.input:focus { border-color: var(--live); }
.label {
  display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--fg3); margin: 14px 0 6px;
}
.err {
  color: var(--bad); background: rgba(255,59,92,0.1); border: 1px solid rgba(255,59,92,0.35);
  border-radius: 10px; padding: 9px 12px; font-size: 12.5px; font-weight: 600; margin-top: 12px;
}
.ok-banner {
  color: var(--live); background: var(--live-soft); border: 1px solid rgba(47,211,123,0.35);
  border-radius: 10px; padding: 9px 12px; font-size: 12.5px; font-weight: 600; margin-top: 12px;
}

.badge {
  display: inline-flex; align-items: center; font-size: 10.5px; font-weight: 800;
  border-radius: 999px; padding: 3px 9px; letter-spacing: 0.02em;
}
.badge-live { color: #04140b; background: var(--live); }
.badge-soft { color: var(--live); background: var(--live-soft); border: 1px solid rgba(47,211,123,0.3); }
.badge-warn { color: var(--warn); background: rgba(255,154,61,0.12); border: 1px solid rgba(255,154,61,0.4); }
.badge-info { color: var(--info); background: rgba(77,163,255,0.12); border: 1px solid rgba(77,163,255,0.35); }
.badge-dim { color: var(--fg3); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); }

/* toggle switch (Account notifications) */
.toggle { position: relative; width: 40px; height: 23px; flex: 0 0 40px; cursor: pointer; border: none; padding: 0; background: rgba(255,255,255,0.14); border-radius: 999px; transition: background 0.15s; }
.toggle .knob { position: absolute; top: 2.5px; left: 3px; width: 18px; height: 18px; border-radius: 999px; background: #fff; transition: left 0.15s; }
.toggle.on { background: var(--live); }
.toggle.on .knob { left: 19px; }

.list-row {
  display: flex; align-items: center; gap: 12px; padding: 11px 12px;
  border-radius: 13px; border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03); margin-top: 8px;
}
.list-row .meta { font-size: 11px; color: var(--fg3); margin-top: 2px; }

.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 100;
  background: var(--ink-600); border: 1px solid rgba(255,255,255,0.14); color: var(--fg1);
  border-radius: 999px; padding: 10px 18px; font-weight: 700; font-size: 12.5px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5); animation: toastIn 0.28s var(--ease-out);
}

/* ---------- auth screens ---------- */
.auth-wrap {
  min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(1200px 700px at 50% 20%, rgba(47,211,123,0.09), transparent 60%), var(--ink-800);
  padding: 20px;
}
.auth-card {
  width: 100%; max-width: 400px; background: var(--ink-700);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 22px; padding: 28px;
  animation: authIn 0.3s var(--ease-out); box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.auth-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.auth-brand .brand-name { font-size: 22px; }
.auth-h { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; }
.auth-sub { font-size: 12.5px; color: var(--fg2); margin-top: 5px; line-height: 1.5; }
.auth-foot { margin-top: 18px; font-size: 12.5px; color: var(--fg3); text-align: center; }
.auth-icon { color: var(--live); margin-bottom: 12px; }
.demo-note { margin-top: 16px; font-size: 10.5px; color: var(--fg3); text-align: center; letter-spacing: 0.02em; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .sidebar { display: none; }
  .bottom-nav { display: flex; }
  .content { padding: 16px 14px; }
  .header { padding: 12px 14px; }
}

/* print (report page) */
@media print {
  .sidebar, .bottom-nav, .header, .no-print { display: none !important; }
  body, .app, .main, .content { background: #fff !important; color: #111 !important; overflow: visible; height: auto; }
}

/* ---------- body map ---------- */
.bm-grid { display: flex; gap: 14px; align-items: flex-start; max-width: 1080px; }
.bm-left { flex: 1.6; min-width: 0; }
.bm-right { flex: 1; min-width: 260px; }
.seg { display: flex; background: rgba(255,255,255,0.06); border-radius: 999px; padding: 3px; }
.seg-btn { border: none; background: transparent; color: var(--fg2); font-weight: 800; font-size: 12px; padding: 6px 16px; border-radius: 999px; cursor: pointer; }
.seg-btn.on { background: var(--live); color: #04140b; }
#bm-viewport { position: relative; height: min(60vh, 540px); overflow: hidden; border-radius: 16px; background: radial-gradient(700px 500px at 50% 30%, rgba(47,211,123,0.05), transparent 60%), var(--ink-800); border: 1px solid rgba(255,255,255,0.07); touch-action: none; -webkit-user-select: none; user-select: none; cursor: grab; }
#bm-viewport:active { cursor: grabbing; }
#bm-stage { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; transform-origin: center center; }
#bm-svg { height: 100%; max-width: 100%; }
.bm-level { position: absolute; top: 10px; left: 10px; }
.bm-zoom { position: absolute; bottom: 10px; right: 10px; display: flex; flex-direction: column; gap: 6px; }
.bm-legend { display: flex; align-items: center; gap: 4px; margin-top: 10px; }
.bm-leg { width: 26px; height: 8px; border-radius: 4px; display: inline-block; }
.bm-row { display: flex; align-items: center; gap: 10px; width: 100%; text-align: left; padding: 10px 11px; border-radius: 13px; border: 1px solid rgba(255,255,255,0.07); background: rgba(255,255,255,0.03); margin-top: 8px; color: var(--fg1); cursor: pointer; font-size: 12.5px; }
.bm-row:hover { background: rgba(255,255,255,0.06); }
.bm-dot { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #0E0E10; }
.bm-region { display: block; font-weight: 700; }
.bm-q { display: block; color: var(--fg3); font-size: 11px; margin-top: 2px; }
.bm-side { font-size: 9.5px; font-weight: 800; color: var(--fg3); letter-spacing: 0.06em; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip { padding: 8px 13px; background: rgba(255,255,255,0.05); color: var(--fg2); border: 1px solid rgba(255,255,255,0.12); font-weight: 700; font-size: 12.5px; border-radius: 999px; cursor: pointer; }
.chip.on { background: var(--live); color: #04140b; border-color: var(--live); }
#bm-panel { position: fixed; top: 0; right: -420px; width: 400px; max-width: 92vw; height: 100vh; height: 100dvh; background: var(--ink-700); border-left: 1px solid rgba(255,255,255,0.1); padding: 22px; overflow-y: auto; z-index: 40; transition: right 0.25s var(--ease-out); }
#bm-panel.open { right: 0; animation: panelIn 0.25s var(--ease-out); }
@media (max-width: 860px) {
  .bm-grid { flex-direction: column; }
  .bm-right { width: 100%; }
  #bm-panel { top: auto; right: auto; bottom: -90vh; left: 0; width: 100%; height: auto; max-height: 88vh; border-left: none; border-top: 1px solid rgba(255,255,255,0.1); border-radius: 26px 26px 0 0; transition: bottom 0.25s var(--ease-out); }
  #bm-panel.open { bottom: 0; right: auto; animation: sheetUp 0.3s var(--ease-out); }
}

/* ---------- dashboard ---------- */
.dash-metrics { display: flex; gap: 12px; flex-wrap: wrap; max-width: 1080px; }
.dash-metric { flex: 1; min-width: 180px; padding: 16px; }
.dash-metric-label { font-size: 10.5px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--fg3); }
.dash-metric-value { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; margin-top: 6px; }
.dash-metric-detail { font-size: 11.5px; color: var(--fg3); margin-top: 4px; }
.dash-cols { display: flex; gap: 14px; margin-top: 14px; align-items: flex-start; max-width: 1080px; }
.dash-side { flex: 0 0 300px; display: flex; flex-direction: column; gap: 14px; }
.dash-side .card + .card { margin-top: 0; }
.snap-bar { height: 10px; border-radius: 6px; background: rgba(255,255,255,0.07); overflow: hidden; display: block; }
.snap-fill { display: block; height: 100%; border-radius: 6px; }
@media (max-width: 860px) {
  .dash-cols { flex-direction: column; }
  .dash-side { flex: none; width: 100%; }
}

/* ---------- timeline ---------- */
.tl-row { display: flex; gap: 14px; margin-bottom: 4px; }
.tl-when { width: 66px; flex: 0 0 66px; text-align: right; padding-top: 12px; }
.tl-day { font-weight: 800; font-size: 13px; }
.tl-time { font-size: 11px; color: var(--fg3); margin-top: 2px; }
.tl-track { display: flex; flex-direction: column; align-items: center; width: 18px; flex: 0 0 18px; padding-top: 16px; }
.tl-dot { width: 13px; height: 13px; border-radius: 999px; flex: 0 0 13px; }
.tl-line { width: 2px; flex: 1; background: rgba(255,255,255,0.09); margin-top: 6px; }
.tl-row .card { margin-bottom: 14px; }

/* ---------- med / procedure cards ---------- */
.med-bar { height: 9px; border-radius: 6px; background: rgba(255,255,255,0.07); position: relative; overflow: hidden; margin-top: 10px; }
.med-fill { position: absolute; top: 0; height: 100%; border-radius: 6px; background: var(--live); }
.med-fill.stopped { background: rgba(255,255,255,0.25); }
.med-fill.prn { background: repeating-linear-gradient(90deg, var(--live) 0 10px, transparent 10px 18px); }
.med-range { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--fg3); margin-top: 5px; }
details.add-form { margin-top: 14px; }
details.add-form > summary { cursor: pointer; font-weight: 800; font-size: 12.5px; color: var(--live); list-style: none; }
details.add-form > summary::before { content: '+ '; }
details.edit-form > summary { cursor: pointer; font-weight: 700; font-size: 11.5px; color: var(--fg3); list-style: none; margin-top: 10px; }
.form-grid { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.form-grid > label { flex: 1; min-width: 150px; }
.form-grid .label { margin-top: 8px; }
select.input { appearance: none; }

/* ---------- care-team report (white card on dark shell) ---------- */
.report-card { position: relative; overflow: hidden; background: #fff; color: #18181B; border-radius: 16px; padding: 26px 28px; box-shadow: 0 12px 40px rgba(0,0,0,0.5); max-width: 820px; }
.report-wm { position: absolute; top: 24px; right: -34px; transform: rotate(32deg); font-size: 11px; font-weight: 800; letter-spacing: 0.14em; color: rgba(24,24,27,0.13); border: 1px solid rgba(24,24,27,0.12); padding: 4px 40px; pointer-events: none; }
.report-orb { width: 26px; height: 26px; border-radius: 999px; flex: 0 0 26px; background: radial-gradient(circle at 34% 30%, #2FD37B, #22B368 70%); display: inline-block; }
.report-head { display: flex; gap: 12px; align-items: center; padding-bottom: 14px; border-bottom: 1px solid #E2E4E8; }
.report-section { margin-top: 18px; }
.report-h { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #6E6E76; }
.report-bar { height: 9px; border-radius: 5px; background: #EEF0F3; overflow: hidden; display: block; }
.report-fill { display: block; height: 100%; border-radius: 5px; }
.report-cols { display: flex; gap: 24px; margin-top: 18px; flex-wrap: wrap; }
.report-pill { font-size: 11.5px; font-weight: 700; border-radius: 999px; padding: 4px 11px; }
.report-findings { margin: 8px 0 0; padding-left: 18px; font-size: 12.5px; line-height: 1.65; color: #32323A; }
.report-foot { display: flex; gap: 8px; align-items: flex-start; margin-top: 20px; padding-top: 12px; border-top: 1px solid #E2E4E8; font-size: 10.5px; color: #8A8A92; }
.report-foot svg { flex: 0 0 14px; margin-top: 1px; }
@media print { .report-card { box-shadow: none; } }

/* ---------- smart import ---------- */
.spinner { width: 34px; height: 34px; border: 3px solid rgba(47,211,123,0.25); border-top-color: var(--live); border-radius: 999px; margin: 0 auto; animation: spin 0.9s linear infinite; }
.imp-drop { display: block; border: 1.5px dashed rgba(255,255,255,0.22); border-radius: 16px; padding: 26px 16px; cursor: pointer; color: var(--fg2); font-size: 12.5px; }
.imp-drop b { display: block; color: var(--fg1); font-size: 14px; margin-bottom: 5px; }
.imp-drop span { color: var(--fg3); font-size: 11px; line-height: 1.5; }
.imp-drop:hover { border-color: var(--live); }
.imp-date { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.imp-date-line { flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.imp-date-label { font-size: 12px; font-weight: 800; color: var(--live); letter-spacing: 0.02em; }
.imp-cols { display: flex; gap: 18px; flex-wrap: wrap; }
.imp-quote { font-style: italic; font-size: 12px; color: var(--fg2); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 9px 11px; margin-top: 4px; line-height: 1.5; }
.imp-table { width: 100%; border-collapse: collapse; margin-top: 4px; font-size: 12px; }
.imp-table td { padding: 5px 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.imp-table td:first-child { color: var(--fg3); width: 110px; font-weight: 700; }
