/* ──────────────────────────────────────────────────────────────
   Life OS — design layer.
   Pairs with main.css (variables + shell + buttons + forms + table).
   This file adds the patterns life-os pages use:
     - page-head (title + subtitle + actions)
     - hero (dark gradient strip with greeting + alert tiles)
     - stats grid + stat tile
     - card-head / card-body (consistent card chrome)
     - list-row / divider-row (vertical lists in cards)
     - lo-pill (priority + status badges)
     - lo-table (matches hr-system data-table)
     - form-grid (2-col form layout)
     - empty-state
     - aliases for old life-os class names so 50+ legacy views
       keep working without per-page rewrites.
─────────────────────────────────────────────────────────────── */

/* ── Base reset to keep Tailwind CDN from fighting the design ── */
body { background: var(--bg) !important; color: var(--text) !important; font-family: 'Inter', system-ui, -apple-system, sans-serif; }
* { box-sizing: border-box; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--primary); }
button { font-family: inherit; }

/* ============================================================
    PAGE HEAD
    Usage:
      <div class="lo-page-head">
        <div>
          <h2 class="lo-h1">Mentor Brain</h2>
          <p class="lo-sub">Autonomous decisions…</p>
        </div>
        <div class="lo-actions">
          <button class="btn btn-primary btn-sm">+ New</button>
        </div>
      </div>
============================================================ */
.lo-page-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.lo-h1 { font-size: 22px; font-weight: 700; color: var(--text); margin: 0 0 4px; letter-spacing: -0.01em; }
.lo-sub { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }
.lo-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* ============================================================
    HERO (dark strip — Life OS variant)
============================================================ */
.lo-hero {
    background: linear-gradient(135deg, #1F1B19 0%, #272220 55%, #3D3835 100%);
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.lo-hero::before { content:''; position:absolute; top:-100px; right:-100px; width:340px; height:340px; border-radius:50%; background:radial-gradient(circle, rgba(109,130,193,.18), transparent 60%); pointer-events:none; }
.lo-hero-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; position: relative; z-index: 1; flex-wrap: wrap; }
.lo-hero-greet { font-size: 11px; color: rgba(255,255,255,.55); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.lo-hero-name { font-size: 26px; font-weight: 700; color: #fff; margin: 4px 0 0; letter-spacing: -0.01em; }
.lo-hero-date { font-size: 12px; color: rgba(255,255,255,.45); font-weight: 500; }
.lo-hero-actions { display: flex; gap: 8px; margin-top: 12px; }
.lo-hero-btn {
    display: inline-flex; align-items: center; gap: 6px;
    height: 34px; padding: 0 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.85);
    font-size: 12px; font-weight: 600;
    text-decoration: none; cursor: pointer;
    transition: background .15s, border-color .15s;
}
.lo-hero-btn:hover { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.25); }
.lo-hero-btn.is-accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.lo-hero-btn.is-accent:hover { background: var(--accent-dark); }
.lo-hero-alerts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 18px; position: relative; z-index: 1; }
.lo-hero-alert {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 12px 14px;
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s;
}
.lo-hero-alert:hover { background: rgba(255,255,255,.12); }
.lo-hero-alert-icon { width: 34px; height: 34px; border-radius: 10px; background: rgba(109,130,193,.18); display: grid; place-items: center; color: rgba(255,255,255,.85); flex-shrink: 0; }
.lo-hero-alert-val { font-size: 20px; font-weight: 700; color: #fff; line-height: 1; }
.lo-hero-alert-lbl { font-size: 10px; color: rgba(255,255,255,.55); font-weight: 600; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.4px; }

/* ============================================================
    STATS GRID
============================================================ */
.lo-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 20px; }
.lo-stat {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    display: flex; align-items: center; gap: 14px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .2s;
}
.lo-stat:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.lo-stat-icon { width: 42px; height: 42px; border-radius: var(--radius-lg); display: grid; place-items: center; flex-shrink: 0; background: var(--elevated); color: var(--text-secondary); }
.lo-stat-icon.is-accent { background: rgba(109,130,193,.12); color: var(--accent-dark); }
.lo-stat-icon.is-warn { background: rgba(234,179,8,.12); color: #a16207; }
.lo-stat-icon.is-danger { background: rgba(239,68,68,.10); color: #b91c1c; }
.lo-stat-icon.is-ok { background: rgba(34,197,94,.12); color: #15803d; }
.lo-stat-val { font-size: 24px; font-weight: 700; color: var(--text); line-height: 1; }
.lo-stat-lbl { font-size: 11px; color: var(--muted); font-weight: 500; margin-top: 3px; }
.lo-stat-sub { font-size: 10px; color: var(--muted); margin-top: 2px; }

/* ============================================================
    GRIDS
============================================================ */
.lo-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.lo-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.lo-col-stack { display: flex; flex-direction: column; gap: 16px; }
@media (max-width: 1100px) {
    .lo-stats { grid-template-columns: repeat(2, 1fr); }
    .lo-grid-2 { grid-template-columns: 1fr; }
    .lo-grid-3 { grid-template-columns: 1fr; }
    .lo-hero-alerts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .lo-stats { grid-template-columns: 1fr; }
    .lo-hero-alerts { grid-template-columns: 1fr; }
    .lo-hero { padding: 22px 22px; }
    .lo-hero-name { font-size: 22px; }
}

/* ============================================================
    CARDS — already styled by main.css; add head/body sections
============================================================ */
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); color: var(--text); }
.card:hover { box-shadow: var(--shadow-md); }
.lo-card-head { padding: 14px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.lo-card-title { font-size: 14px; font-weight: 700; color: var(--text); }
.lo-card-sub { font-size: 11px; color: var(--muted); margin-top: 2px; }
.lo-card-link { font-size: 11px; font-weight: 600; color: var(--accent-dark); text-decoration: none; }
.lo-card-link:hover { color: var(--primary); }
.lo-card-body { padding: 16px 20px; }
.lo-card-body.is-flush { padding: 0; }

/* Padding helpers used in existing markup (p-5 / p-6 from Tailwind) — keep working */
.card.p-3 { padding: 12px; }
.card.p-4 { padding: 16px; }
.card.p-5 { padding: 20px; }
.card.p-6 { padding: 24px; }

/* ============================================================
    LIST ROW (divider-style list inside a card)
============================================================ */
.lo-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border-light); }
.lo-row:last-child { border-bottom: 0; }
.lo-row-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--elevated); color: var(--text-secondary); display: grid; place-items: center; flex-shrink: 0; }
.lo-row-icon.is-accent { background: rgba(109,130,193,.12); color: var(--accent-dark); }
.lo-row-icon.is-warn { background: rgba(234,179,8,.12); color: #a16207; }
.lo-row-icon.is-danger { background: rgba(239,68,68,.10); color: #b91c1c; }
.lo-row-icon.is-ok { background: rgba(34,197,94,.10); color: #15803d; }
.lo-row-body { flex: 1; min-width: 0; }
.lo-row-title { font-size: 13px; font-weight: 600; color: var(--text); }
.lo-row-sub { font-size: 11px; color: var(--muted); margin-top: 2px; line-height: 1.4; }
.lo-row-meta { font-size: 11px; color: var(--muted); white-space: nowrap; }

/* ============================================================
    PILLS / STATUS BADGES
    .lo-pill is a small inline tag; variant by data-priority or class.
============================================================ */
.lo-pill {
    display: inline-flex; align-items: center; gap: 4px;
    height: 22px; padding: 0 10px;
    border-radius: 999px;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.4px;
    background: var(--elevated); color: var(--text-secondary);
    border: 1px solid var(--border);
}
.lo-pill.is-low      { background: #f3f4f6; color: #6b7280; border-color: #e5e7eb; }
.lo-pill.is-normal   { background: #eef2ff; color: #4338ca; border-color: #e0e7ff; }
.lo-pill.is-high     { background: #fef3c7; color: #92400e; border-color: #fde68a; }
.lo-pill.is-urgent   { background: #fee2e2; color: #b91c1c; border-color: #fecaca; }
.lo-pill.is-ok       { background: rgba(34,197,94,.10); color: #15803d; border-color: rgba(34,197,94,.25); }
.lo-pill.is-warn     { background: rgba(234,179,8,.10); color: #a16207; border-color: rgba(234,179,8,.25); }
.lo-pill.is-err      { background: rgba(239,68,68,.10); color: #b91c1c; border-color: rgba(239,68,68,.25); }
.lo-pill.is-muted    { background: var(--elevated); color: var(--muted); }

/* ============================================================
    DATA TABLE — lighter syntax than main.css .data-table
============================================================ */
.lo-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.lo-table thead th {
    text-align: left;
    padding: 11px 16px;
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px;
    color: var(--muted);
    background: var(--elevated);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}
.lo-table tbody td { padding: 12px 16px; border-bottom: 1px solid var(--border-light); color: var(--text); vertical-align: top; }
.lo-table tbody tr:last-child td { border-bottom: 0; }
.lo-table tbody tr:hover { background: var(--bg); }
.lo-table td.is-meta { font-size: 11px; color: var(--muted); white-space: nowrap; }
.lo-table td.is-num { font-variant-numeric: tabular-nums; }
.lo-table td.is-right { text-align: right; }
.lo-table .lo-table-name { font-weight: 600; color: var(--text); }
.lo-table .lo-table-sub  { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ============================================================
    FORM GRID
============================================================ */
.lo-form { display: flex; flex-direction: column; gap: 14px; }
.lo-form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.lo-form-row.is-3 { grid-template-columns: repeat(3, 1fr); }
.lo-form-row.is-full { grid-template-columns: 1fr; }
@media (max-width: 720px) { .lo-form-row, .lo-form-row.is-3 { grid-template-columns: 1fr; } }
.lo-form-help { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* ============================================================
    HELP / NOTICE / INLINE-ALERT
============================================================ */
.lo-help { background: var(--elevated); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px 14px; font-size: 12px; color: var(--text-secondary); line-height: 1.5; }
.lo-help summary { cursor: pointer; color: var(--text); font-weight: 600; }
.lo-help ol, .lo-help ul { padding-left: 20px; margin: 8px 0 0; }
.lo-help code { background: #fff; border: 1px solid var(--border); }
.lo-notice { padding: 12px 14px; border-radius: var(--radius-md); font-size: 13px; }
.lo-notice.is-ok    { background: rgba(34,197,94,.08); color: #166534; border: 1px solid rgba(34,197,94,.2); }
.lo-notice.is-warn  { background: rgba(234,179,8,.08); color: #854d0e; border: 1px solid rgba(234,179,8,.2); }
.lo-notice.is-err   { background: rgba(239,68,68,.08); color: #991b1b; border: 1px solid rgba(239,68,68,.25); }

/* ============================================================
    EMPTY STATE
============================================================ */
.lo-empty { padding: 40px 24px; text-align: center; color: var(--muted); font-size: 13px; }
.lo-empty .material-symbols-outlined { font-size: 36px; opacity: 0.5; margin-bottom: 8px; display: block; }

/* ============================================================
    MODAL (simple)
============================================================ */
.lo-modal { position: fixed; inset: 0; background: rgba(17,24,39,.55); display: none; align-items: center; justify-content: center; z-index: 40; padding: 20px; }
.lo-modal.show { display: flex; }
.lo-modal-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-lg); width: 100%; max-width: 540px; max-height: 90vh; overflow-y: auto; }
.lo-modal-head { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.lo-modal-title { font-size: 15px; font-weight: 700; color: var(--text); }
.lo-modal-body { padding: 18px 20px; }
.lo-modal-foot { padding: 12px 20px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 8px; }

/* ============================================================
    AVATAR
============================================================ */
.lo-av { width: 36px; height: 36px; border-radius: 10px; background: var(--primary); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 12px; flex-shrink: 0; }
.lo-av.is-sm { width: 28px; height: 28px; font-size: 10px; border-radius: 8px; }
.lo-av.is-lg { width: 48px; height: 48px; font-size: 16px; border-radius: 12px; }
.lo-av.is-accent { background: var(--accent); color: #fff; }

/* ============================================================
    LEGACY ALIASES — make existing dark-themed Tailwind markup readable
    (covers the 50+ life-os views that still use .input/.label/.btn-secondary/.select/.textarea)
============================================================ */
.input, input[type="text"]:not([class*="form-"]):not(.tb-search input):not(.auth-input),
input[type="email"], input[type="password"], input[type="number"],
input[type="date"], input[type="datetime-local"], input[type="time"], input[type="search"]:not(.tb-search input),
textarea:not([class*="form-"]) {
    width: 100%; height: 42px; padding: 0 14px;
    background: var(--input-bg); border: 1px solid var(--border); border-radius: var(--radius-md);
    color: var(--text); font-size: 14px; font-family: inherit;
    transition: border-color .15s, background .15s, box-shadow .15s;
}
textarea, textarea.input, textarea:not([class*="form-"]) { height: auto; min-height: 88px; padding: 10px 14px; line-height: 1.5; }
.input:focus, input:focus:not([class*="form-"]):not(.tb-search input), textarea:focus:not([class*="form-"]) {
    outline: none; background: #fff; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(17,24,39,.10);
}
.input::placeholder, input::placeholder, textarea::placeholder { color: var(--muted); }

.select, select:not([class*="form-"]) {
    width: 100%; height: 42px; padding: 0 36px 0 14px;
    background: var(--input-bg) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat right 12px center;
    border: 1px solid var(--border); border-radius: var(--radius-md); color: var(--text);
    font-size: 14px; font-family: inherit; appearance: none; -webkit-appearance: none; cursor: pointer;
}
.select:focus, select:focus:not([class*="form-"]) {
    outline: none; background-color: #fff; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(17,24,39,.10);
}

.label { display: block; font-size: 12px; font-weight: 500; color: var(--text-secondary); margin-bottom: 6px; letter-spacing: 0.01em; }

.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    height: 36px; padding: 0 16px; background: var(--primary); border: 1px solid var(--primary);
    border-radius: var(--radius-md); color: #fff; font-size: 13px; font-weight: 600;
    font-family: inherit; cursor: pointer; text-decoration: none; transition: background .15s;
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-primary.text-sm, .btn-primary.text-xs { font-size: 12px; height: 32px; padding: 0 12px; }
.btn-secondary {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    height: 36px; padding: 0 14px; background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-md); color: var(--text); font-size: 13px; font-weight: 500;
    font-family: inherit; cursor: pointer; text-decoration: none; transition: background .15s, border-color .15s;
}
.btn-secondary:hover { background: var(--elevated); border-color: var(--border-outline); }
.btn-secondary.text-sm, .btn-secondary.text-xs { font-size: 12px; height: 32px; padding: 0 12px; }

/* Some old views used .textarea explicitly */
.textarea { width:100%; min-height: 88px; padding: 10px 14px; background: var(--input-bg); border: 1px solid var(--border); border-radius: var(--radius-md); color: var(--text); font-size: 14px; font-family: inherit; line-height: 1.5; }
.textarea:focus { outline:none; background:#fff; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(17,24,39,.10); }

/* Old badge classes mapped to lo-pill */
.badge { display: inline-flex; align-items: center; height: 22px; padding: 0 10px; border-radius: 999px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; background: var(--elevated); color: var(--text-secondary); border: 1px solid var(--border); }
.badge-low      { background: #f3f4f6; color: #6b7280; border-color: #e5e7eb; }
.badge-normal   { background: #eef2ff; color: #4338ca; border-color: #e0e7ff; }
.badge-high     { background: #fef3c7; color: #92400e; border-color: #fde68a; }
.badge-urgent   { background: #fee2e2; color: #b91c1c; border-color: #fecaca; }

/* Override Tailwind dark color classes that life-os legacy views use heavily.
   We can't unset all utility classes but we can make sure they don't paint
   black-on-black / white-on-white. */
.bg-ink-900, .bg-ink-800, .bg-ink-700 { background-color: transparent !important; }
.bg-ink-600 { background-color: var(--elevated) !important; }
.border-ink-900, .border-ink-800, .border-ink-700, .border-ink-600, .border-ink-500 { border-color: var(--border) !important; }
.divide-ink-600 > * + *, .divide-ink-700 > * + * { border-color: var(--border-light) !important; }
.text-neutral-100, .text-neutral-200 { color: var(--text) !important; }
.text-neutral-300 { color: var(--text-secondary) !important; }
.text-neutral-400, .text-neutral-500 { color: var(--muted) !important; }
.text-white { color: var(--text) !important; }
.bg-black\/70, .bg-black\/50 { background-color: rgba(17,24,39,.55) !important; }
.bg-red-950\/30 { background-color: rgba(239,68,68,.08) !important; }
.border-red-900\/50 { border-color: rgba(239,68,68,.25) !important; }
.text-red-400 { color: #b91c1c !important; }
.text-rose-400 { color: #b91c1c !important; }
.text-emerald-400 { color: #15803d !important; }
.text-amber-400 { color: #a16207 !important; }
.text-orange-400 { color: #b45309 !important; }
.text-accent-300, .text-accent-400, .text-accent-500 { color: var(--accent-dark) !important; }
.bg-accent-500, .bg-accent-400 { background-color: var(--accent) !important; color: #fff !important; }

/* ============================================================
    AUTH SHELL (login page)
============================================================ */
.auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
    background: radial-gradient(circle at 25% 20%, rgba(255,255,255,.04) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(109,130,193,.10) 0%, transparent 50%),
                var(--primary-dark);
}
.auth-card { width: 100%; max-width: 420px; background: #312B28; border: 1px solid rgba(255,255,255,.10); border-radius: 20px; padding: 40px 36px; box-shadow: 0 30px 80px rgba(0,0,0,.5); color: #fff; }
.auth-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.auth-brand-logo { width: 48px; height: 48px; background: var(--brand-cream); border-radius: 10px; padding: 6px; display: grid; place-items: center; }
.auth-brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.auth-brand-wordmark { font-size: 20px; font-weight: 700; color: #fff; }
.auth-brand-sub { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 2px; }
.auth-title { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.auth-subtitle { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 24px; }
.auth-input {
    width: 100%; height: 48px; padding: 0 16px;
    background: #2D2825; border: 1px solid rgba(255,255,255,.10); border-radius: 10px;
    color: #fff; font-size: 14px; font-family: inherit;
    transition: border-color .15s, box-shadow .15s;
}
.auth-input::placeholder { color: rgba(255,255,255,.35); }
.auth-input:focus { outline: none; border-color: rgba(255,255,255,.5); box-shadow: 0 0 0 3px rgba(255,255,255,.08); }
.auth-btn { width: 100%; height: 48px; border: 0; border-radius: 10px; background: var(--accent); color: #fff; font-size: 14px; font-weight: 700; cursor: pointer; transition: background .15s; }
.auth-btn:hover { background: var(--accent-dark); }
.auth-error { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.30); color: #FCA5A5; padding: 10px 14px; border-radius: 8px; font-size: 13px; margin-bottom: 16px; }
.auth-meta { text-align: center; margin-top: 18px; font-size: 12px; color: rgba(255,255,255,.45); }

/* ============================================================
    MENTOR INBOX DROPDOWN (in topbar)
============================================================ */
#mentorInboxDropdown { display: none; position: absolute; right: 0; top: 40px; width: 380px; max-height: 70vh; overflow-y: auto; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); z-index: 30; }
#mentorInboxDropdown.show { display: block; }
.notif-item { display: flex; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--border-light); cursor: pointer; transition: background .12s; text-decoration: none; color: var(--text); }
.notif-item:hover { background: var(--elevated); color: var(--text); }
.notif-item:last-child { border-bottom: 0; }
.notif-icon { width: 32px; height: 32px; flex-shrink: 0; border-radius: 8px; display: grid; place-items: center; }
.notif-icon.green { background: rgba(34,197,94,.10); color: #15803d; }
.notif-icon.red   { background: rgba(239,68,68,.10); color: #b91c1c; }
.notif-icon.yellow{ background: rgba(234,179,8,.10); color: #a16207; }
.notif-icon.blue  { background: rgba(109,130,193,.12); color: var(--accent-dark); }
.notif-body { flex: 1; min-width: 0; }
.notif-body-title { font-size: 13px; font-weight: 600; color: var(--text); }
.notif-body-text { font-size: 12px; color: var(--text-secondary); line-height: 1.4; }
.notif-body-time { font-size: 11px; color: var(--muted); margin-top: 4px; }
.notif-empty { padding: 24px; text-align: center; color: var(--muted); font-size: 13px; }

/* ============================================================
    UTILITY
============================================================ */
.lo-mono { font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace; }
code { font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.85em; background: var(--elevated); padding: 1px 6px; border-radius: 4px; color: var(--text); }
.lo-divider { height: 1px; background: var(--border); margin: 16px 0; }
.lo-nowrap { white-space: nowrap; }
h3 { font-size: 16px; font-weight: 700; color: var(--text); margin: 0 0 12px; }
h2 { font-size: 20px; font-weight: 700; color: var(--text); margin: 0 0 12px; }
.page-title { font-size: 24px; font-weight: 700; color: var(--text); margin: 0 0 16px; }
