/* ============================================================
   VIEWS — specifieke stijlen per scherm:
   dashboard, taakrijen, checklist, planning, team, meldingen
   ============================================================ */

/* --- Start: attentielijst --- */
.attn-list { display: flex; flex-direction: column; gap: 8px; }
.attn-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.attn-item:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.attn-item--overdue { border-left: 3px solid var(--stop); }
.attn-item--due { border-left: 3px solid var(--warn); }
.attn-item--stalled { border-left: 3px solid var(--border-strong); }
.attn-icon { flex-shrink: 0; }
.attn-icon .icon { width: 15px; height: 15px; }
.attn-item--overdue .attn-icon { color: var(--stop); }
.attn-item--due .attn-icon { color: var(--warn); }
.attn-item--stalled .attn-icon { color: var(--ink-mute); }
.attn-text { flex: 1; min-width: 0; }
.attn-roles {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-soft);
  padding: 2px 9px;
  border-radius: 10px;
  white-space: nowrap;
  cursor: help;
}
.attn-go { font-size: 12px; color: var(--ink-mute); white-space: nowrap; }
.attn-item:hover .attn-go { color: var(--accent); }

/* --- Start: compacte strip van lopende producten --- */
.prod-strip { padding: 2px 0; }
.prod-row {
  display: grid;
  grid-template-columns: minmax(160px, 1.1fr) 1fr 140px 44px;
  gap: 16px;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
}
.prod-row:last-child { border-bottom: none; }
.prod-row:hover { background: var(--bg); }
.prod-row-name { font-size: 13.5px; font-weight: 600; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.prod-row-phase { font-size: 12px; color: var(--ink-soft); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.prod-row-bar { height: 6px; background: var(--bg-soft); border-radius: 3px; overflow: hidden; }
.prod-row-bar > div { height: 100%; background: var(--grad); border-radius: 3px; transition: width 0.3s; }
.prod-row-pct { font-size: 12.5px; font-weight: 600; color: var(--accent); text-align: right; font-variant-numeric: tabular-nums; }

/* --- Dashboard: takenpreview --- */
.todo-preview { display: flex; flex-direction: column; gap: 8px; }
.todo-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.todo-item:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.todo-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 1px 7px;
  border-radius: 8px;
  flex-shrink: 0;
}
.todo-title { flex: 1; font-size: 13px; font-weight: 500; min-width: 0; }
.todo-meta { font-size: 12px; color: var(--ink-mute); white-space: nowrap; }
/* Label voor taken die een urgente mijlpaal vooruit helpen */
.todo-flag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--warn);
  background: var(--warn-soft);
  padding: 1px 8px;
  border-radius: 10px;
  flex-shrink: 0;
  cursor: help;
}
.todo-flag--overdue { color: var(--stop); background: var(--stop-soft); }

/* --- Productkaarten --- */
.project-list { display: flex; flex-direction: column; gap: 10px; }
.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.project-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.project-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}
.project-name { font-family: var(--font-serif); font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.project-meta { font-size: 12px; color: var(--ink-mute); margin-top: 2px; }
.project-pct { text-align: right; }
.project-pct-num { font-family: var(--font-serif); font-size: 24px; font-weight: 800; letter-spacing: -0.03em; color: var(--accent); line-height: 1; font-variant-numeric: tabular-nums; }
.project-pct-label { font-size: 11px; color: var(--ink-mute); margin-top: 2px; }

.section-dots { display: flex; gap: 4px; margin-bottom: 10px; }
.section-dot { flex: 1; height: 6px; border-radius: 3px; background: var(--bg-soft); position: relative; }
.section-dot.done { background: var(--done); }
.section-dot.active { background: var(--warn); }
.section-dot.blocked { background: var(--bg-soft); border: 1px dashed var(--border-strong); }
.section-dot-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  margin-bottom: 6px;
  z-index: 10;
}
.section-dot:hover .section-dot-tooltip { opacity: 1; }
.project-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-soft);
}
.project-status {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  background: var(--warn-soft);
  color: var(--warn);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
}
.project-status.done { background: var(--done-soft); color: var(--done); }

/* --- Mijn taken: de takenlijst scrolt binnen de schermhoogte ---
   De hoofdkolom wordt een flex-kolom van precies één scherm hoog;
   kop, filters en tabs blijven staan en de lijst vult de resterende
   ruimte — de schermhoogte bepaalt dus de lijsthoogte. */
.main--mytasks {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  padding-bottom: 28px;
}
.main--mytasks > * { flex-shrink: 0; }
.main--mytasks .task-scroll {
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}
/* De kaarten zelf niet laten meekrimpen met de containerhoogte */
.main--mytasks .task-scroll > * { flex-shrink: 0; }

/* --- Tabs (Mijn taken) --- */
.task-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.task-tab {
  padding: 10px 18px;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-weight: 500;
}
.task-tab.active { color: var(--ink); border-bottom-color: var(--accent); }
.task-tab .count {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--ink-soft);
  padding: 1px 7px;
  border-radius: 10px;
  font-size: 11px;
  margin-left: 5px;
}
.task-tab.active .count { background: var(--accent-soft); color: var(--accent); }

/* --- Taakrijen (gedeeld component) --- */
.trow-list { display: flex; flex-direction: column; }
.trow {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.trow:last-child { border-bottom: none; }

/* Klikbare kop: altijd zichtbaar, compact. */
.trow-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 12px;
  cursor: pointer;
  border-radius: inherit;
  transition: background 0.15s;
}
.trow-head:hover { background: rgba(0, 0, 0, 0.03); }

/* Uitklapzone met de invulvelden — links uitgelijnd onder de titel. */
.trow-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 12px 14px 46px;
}

.trow-state {
  width: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-mute);
  flex-shrink: 0;
  margin-top: 1px;
}
.trow--done .trow-state { color: var(--done); font-weight: 700; }
.trow--later .trow-state, .trow--pending .trow-state { color: var(--warn); }
.trow--wait .trow-state { color: var(--wait); }

.trow.is-locked { opacity: 0.62; background: repeating-linear-gradient(-45deg, transparent 0 12px, rgba(18,22,33,0.02) 12px 24px); }
.trow.is-mine { background: linear-gradient(90deg, var(--accent-soft) 0, transparent 340px); border-radius: 8px; }
.trow.is-mine .trow-num { background: var(--accent); color: #fff; }
.trow--done { }

/* --- Mijn taken: elke taak als losse kaart, achtergrond faadt van rood naar wit ---
   De rand faadt mee via een tweede achtergrondlaag (border-box): overal net
   iets donkerder dan de vulling erboven, zodat de rand overal zichtbaar blijft. */
.trow-list--cards { display: flex; flex-direction: column; gap: 10px; }
.trow-list--cards .trow {
  border: 1px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, #fdf2f4 0%, var(--bg-card) 50%) padding-box,
    linear-gradient(90deg, #f6d6de 0%, var(--border) 50%) border-box;
}
.trow-list--cards .trow-head { padding: 14px 16px; }
/* Popover van het ⋯-menu niet afsnijden zolang hij open staat */
.trow-list--cards .trow.is-menu-open { overflow: visible; }
.trow-list--cards .trow-body { padding: 0 16px 14px 50px; }
/* eigen taken iets aanwezig rood zodat ze eruit springen — bewust subtiel. */
.trow-list--cards .trow.is-mine {
  background:
    linear-gradient(90deg, #fce7eb 0%, var(--bg-card) 50%) padding-box,
    linear-gradient(90deg, #f2c5cf 0%, var(--border) 50%) border-box;
}
/* geblokkeerde taken neutraal (grijs → wit) i.p.v. rood */
.trow-list--cards .trow.is-locked {
  background:
    linear-gradient(90deg, #f1f2f5 0%, var(--bg-card) 50%) padding-box,
    linear-gradient(90deg, #d7dae0 0%, var(--border) 50%) border-box;
}

.trow-main { flex: 1; min-width: 0; }
.trow-title { font-size: 14px; line-height: 1.45; }
.trow-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 0 7px;
  margin-right: 8px;
  vertical-align: 1px;
}
.trow--done .trow-title { color: var(--ink-soft); }
.trow-info { margin-left: 6px; color: var(--ink-mute); cursor: help; font-size: 12px; }

.trow-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 5px;
}
.trow-product { color: var(--accent); font-weight: 500; cursor: pointer; }
.trow-product:hover { text-decoration: underline; }
.trow-signal { font-size: 11px; color: var(--ink-mute); cursor: default; }
.trow-done-meta { font-size: 11.5px; color: var(--done); font-weight: 500; }

.trow-blockers {
  margin-top: 7px;
  font-size: 12px;
  color: var(--warn);
  background: var(--warn-soft);
  border-radius: 6px;
  padding: 6px 10px;
  display: inline-block;
}
.trow-blocker-who, .trow-blocker-more { color: var(--ink-mute); }

.trow-comment {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--ink-soft);
  background: var(--bg);
  border-left: 2px solid var(--border-strong);
  padding: 6px 10px;
  border-radius: 0 6px 6px 0;
}
.trow-comment-icon { margin-right: 6px; }

.trow-side {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 1px;
}

/* Compact statuslabel (alleen-lezen) rechts in de kop. */
.trow-status {
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 10px;
  white-space: nowrap;
}
.trow-status--open { color: var(--ink-soft); background: var(--bg-soft); }
.trow-status--pending,
.trow-status--later,
.trow-status--wait { color: var(--warn); background: var(--warn-soft); }
.trow-status--done { color: var(--done); background: var(--done-soft); }
.trow-status--locked { color: var(--ink-mute); background: var(--bg-soft); }

/* Chevron draait mee met open/dicht. */
.trow-chevron {
  font-size: 10px;
  color: var(--ink-mute);
  transition: transform 0.18s;
  flex-shrink: 0;
}
.trow:not(.is-open) .trow-chevron { transform: rotate(-90deg); }

.trow-comment-hint { cursor: default; }

/* Gekozen afrondstatus (bijv. "N.v.t."), leesbaar voor iedereen */
.trow-choice { font-size: 12px; color: var(--ink-soft); }

.reassign { display: inline-flex; align-items: center; gap: 6px; }
.reassign-select {
  border: 1px dashed var(--border);
  background: transparent;
  font-size: 11px;
  color: var(--ink-mute);
  border-radius: 6px;
  padding: 2px 4px;
  cursor: pointer;
  max-width: 130px;
}
.reassign-select:hover { border-color: var(--accent); color: var(--ink); }

/* --- Checklist: sectie-tijdlijn --- */
.sections-timeline {
  display: flex;
  gap: 4px;
  margin: 20px 0 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  overflow-x: auto;
}
.timeline-section {
  flex: 0 0 auto;
  width: 138px;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s;
}
.timeline-section:hover { background: var(--bg-soft); }
.timeline-section.selected { background: var(--accent-soft); border-color: var(--accent); }
.timeline-section.blocked { opacity: 0.55; }
.ts-num { font-size: 10px; color: var(--ink-mute); letter-spacing: 0.08em; text-transform: uppercase; }
.ts-title { font-size: 12.5px; font-weight: 500; margin: 3px 0 7px; line-height: 1.25; min-height: 31px; }
.ts-progress { height: 4px; background: var(--bg-soft); border-radius: 2px; overflow: hidden; }
.ts-progress-bar { height: 100%; background: var(--grad); transition: width 0.3s; }
.timeline-section.blocked .ts-progress-bar { background: var(--ink-mute); }
.ts-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 5px;
}

.section-detail {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.sd-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.sd-title { font-family: var(--font-serif); font-size: 22px; font-weight: 700; letter-spacing: -0.025em; }
.sd-resp { font-size: 12.5px; color: var(--ink-soft); margin-top: 4px; }
.sd-legend { display: flex; gap: 14px; align-items: center; padding-top: 6px; }
.legend-item { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--ink-mute); }
.legend-dot { width: 9px; height: 9px; border-radius: 50%; }
.legend-dot--open { background: var(--warn); }
.legend-dot--locked { background: var(--bg-soft); border: 1px dashed var(--border-strong); }
.legend-dot--done { background: var(--done); }

/* --- Template (alleen-lezen standaardworkflow) --- */
.tmpl-list { display: flex; flex-direction: column; margin-top: 6px; }
.tmpl-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 11px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.tmpl-row:last-child { border-bottom: none; }
.tmpl-title { flex: 1; min-width: 0; line-height: 1.45; }
.tmpl-side { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

/* --- Planningsoverzicht --- */
.plan-legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--ink-soft);
}
.plan-table { border-collapse: collapse; width: 100%; font-size: 12.5px; }
.plan-table th {
  text-align: left;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-mute);
  font-weight: 600;
  padding: 12px 12px 10px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  background: var(--bg-card);
}
.plan-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  vertical-align: middle;
}
.plan-table tbody tr:last-child td { border-bottom: none; }
.plan-table tbody tr:hover td { background: var(--bg); }
.plan-product { font-weight: 600; color: var(--ink); cursor: pointer; }
.plan-product:hover { color: var(--accent); }
.plan-sticky {
  position: sticky;
  left: 0;
  background: var(--bg-card);
  z-index: 2;
  box-shadow: 2px 0 0 var(--border);
}
.plan-table tbody tr:hover .plan-sticky { background: var(--bg); }
.plan-note-cell { min-width: 200px; }
.plan-note-input {
  width: 100%;
  min-width: 190px;
  border: 1px dashed transparent;
  background: transparent;
  font-size: 12.5px;
  padding: 4px 6px;
  border-radius: 5px;
  color: var(--ink-soft);
}
.plan-note-input:hover { border-color: var(--border); }
.plan-note-input:focus { outline: none; border-color: var(--accent); border-style: solid; background: var(--bg); color: var(--ink); }
.plan-footnote { font-size: 12px; color: var(--ink-mute); margin-top: 12px; }

/* --- Team --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 14px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.team-card-top { display: flex; gap: 12px; align-items: center; }
.team-ident { flex: 1; min-width: 0; }
.team-name { font-size: 15px; font-weight: 600; }
.team-name-input {
  font-size: 15px;
  font-weight: 600;
  border: 1px dashed transparent;
  background: transparent;
  border-radius: 5px;
  padding: 2px 6px;
  margin-left: -6px;
  width: 100%;
}
.team-name-input:hover { border-color: var(--border); }
.team-name-input:focus { outline: none; border-color: var(--accent); border-style: solid; background: var(--bg); }
.team-role { font-size: 12px; color: var(--ink-mute); margin-top: 1px; }
.team-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.team-counts { font-size: 11.5px; color: var(--ink-mute); }

/* --- Login --- */
.login-screen {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--sidebar);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.login-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 36px;
  width: 380px;
  max-width: 100%;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid transparent;
  background-image: linear-gradient(var(--bg-card), var(--bg-card)), var(--grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.login-logo {
  width: 170px;
  height: auto;
  display: block;
  margin-bottom: 8px;
}
.login-brand-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 22px;
}
.login-card label {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 14px 0 6px;
}
.login-card input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  background: var(--bg);
}
.login-card input:focus { outline: none; border-color: var(--accent); background: var(--bg-card); }
.login-btn { width: 100%; margin-top: 22px; background: var(--grad); font-weight: 600; }
.login-btn:hover { filter: brightness(1.05); background: var(--grad); }
.login-error { display: none; color: var(--stop); font-size: 12.5px; margin-top: 12px; }
.login-error.visible { display: block; }

/* --- Meldingen: bel + paneel rechtsboven --- */
.notif-center { position: fixed; top: 22px; right: 28px; z-index: 60; }
.notif-bell {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--ink-soft);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s, color 0.15s, border-color 0.15s;
}
.notif-bell:hover, .notif-bell.is-open { color: var(--ink); border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.notif-bell .icon { width: 18px; height: 18px; }
.notif-bell-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid var(--bg);
}
.notif-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 400px;
  max-width: calc(100vw - 40px);
  max-height: min(540px, calc(100vh - 90px));
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}
.notif-panel-head {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 8px 10px 6px;
}
.notif-panel-empty { padding: 26px 16px; text-align: center; color: var(--ink-mute); font-size: 12.5px; }
.notif-panel-list { display: flex; flex-direction: column; gap: 2px; }
.notif-panel .notif { border: none; border-radius: 8px; padding: 10px; box-shadow: none; }
.notif-panel .notif:hover { background: var(--bg); box-shadow: none; }
.notif {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.notif:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.notif--unread { border-left: 3px solid var(--accent); background: linear-gradient(90deg, var(--accent-soft) 0, var(--bg-card) 120px); }
.notif-icon { font-size: 16px; margin-top: 1px; color: var(--ink-mute); }
.notif--unread .notif-icon { color: var(--accent); }
.notif-body { flex: 1; min-width: 0; }
.notif-title { font-size: 13.5px; font-weight: 500; }
.notif-meta { font-size: 12px; color: var(--ink-mute); margin-top: 2px; }
.notif-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }
.notif-new {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 1px 7px;
  border-radius: 8px;
}
.notif-when { font-size: 11.5px; color: var(--ink-mute); }
