/* ============================================================
   Jarad Lee Photography — Client Portal
   Light, premium, serif-first design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;600&display=swap');

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

:root {
  --cream:      #faf9f7;
  --warm-white: #ffffff;
  --border:     #e8e4df;
  --border-mid: #d4cfc9;
  --text:       #2d2926;
  --text-mid:   #6b6460;
  --text-light: #a09893;
  --accent:     #8b7355;
  --accent-dk:  #6b5a43;
  --gold:       #c8a96e;
  --green:      #5a8a72;
  --red:        #b55a4a;
  --blue:       #4a6fa5;
  --sidebar-w:  260px;
  --header-h:   64px;
  --radius:     4px;
  --shadow:     0 2px 12px rgba(45,41,38,.08);
  --shadow-lg:  0 8px 32px rgba(45,41,38,.12);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dk); text-decoration: underline; }

p { margin-bottom: .75rem; }

/* --- Layout ------------------------------------------------ */
.app-wrapper {
  display: flex;
  min-height: 100vh;
}

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

.sidebar-logo {
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.sidebar-logo .wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: .06em;
  color: var(--text);
  display: block;
  line-height: 1.2;
}
.sidebar-logo .sub {
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--text-light);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

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

.nav-section {
  padding: 8px 20px 4px;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-light);
  font-family: 'Lato', sans-serif;
  font-weight: 600;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--text-mid);
  font-size: .9rem;
  transition: background .15s, color .15s;
  border-left: 3px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.nav-item:hover {
  background: var(--cream);
  color: var(--text);
  text-decoration: none;
}
.nav-item.active {
  background: var(--cream);
  color: var(--accent);
  border-left-color: var(--accent);
  font-weight: 600;
}
.nav-item.disabled {
  color: var(--text-light);
  cursor: not-allowed;
  opacity: .6;
}
.nav-item .icon { width: 18px; text-align: center; flex-shrink: 0; }
.nav-item .badge {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  font-size: .65rem;
  padding: 2px 7px;
  border-radius: 10px;
}
.nav-item .coming-soon {
  margin-left: auto;
  font-size: .6rem;
  background: var(--border);
  color: var(--text-light);
  padding: 2px 6px;
  border-radius: 10px;
  letter-spacing: .05em;
}

.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-light);
}
.sidebar-footer a { color: var(--text-light); }
.sidebar-footer a:hover { color: var(--accent); }

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

.topbar {
  height: var(--header-h);
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar h1 {
  font-size: 1.25rem;
  font-weight: 600;
  flex: 1;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-body {
  padding: 32px;
  flex: 1;
}

/* --- Cards ------------------------------------------------- */
.card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.card + .card { margin-top: 20px; }
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- Grid -------------------------------------------------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* --- Stat cards ------------------------------------------- */
.stat-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}
.stat-card .label {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 6px;
}
.stat-card .value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text);
  line-height: 1;
}
.stat-card .sub {
  font-size: .8rem;
  color: var(--text-mid);
  margin-top: 4px;
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  font-family: 'Lato', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .03em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .15s, box-shadow .15s;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dk); color: #fff; text-decoration: none; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-mid);
  color: var(--text-mid);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  padding: 6px 10px;
}
.btn-ghost:hover { background: var(--cream); color: var(--text); text-decoration: none; }

.btn-sm { padding: 6px 14px; font-size: .8rem; }
.btn-lg { padding: 13px 28px; font-size: 1rem; }

.btn-disabled, button:disabled {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-danger { background: var(--red); color: #fff; }
.btn-danger:hover { background: #9a4a3a; color: #fff; }

/* --- Placeholder / coming soon tiles ---------------------- */
.placeholder-section {
  border: 1px dashed var(--border-mid);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  opacity: .65;
  background: var(--cream);
}
.placeholder-section .ph-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.placeholder-section .ph-label {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--border);
  color: var(--text-light);
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.placeholder-section .ph-desc {
  font-size: .82rem;
  color: var(--text-light);
}

/* --- Forms ------------------------------------------------- */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-mid);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--warm-white);
  transition: border-color .15s, box-shadow .15s;
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,115,85,.12);
}
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a09893' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.form-hint { font-size: .78rem; color: var(--text-light); margin-top: 4px; }
.form-error { font-size: .78rem; color: var(--red); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* --- Tables ----------------------------------------------- */
.data-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.data-table th {
  text-align: left;
  padding: 10px 14px;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--cream); }
.data-table a { color: var(--text); font-weight: 600; }
.data-table a:hover { color: var(--accent); }

/* --- Tags -------------------------------------------------- */
.tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 3px 9px;
  border-radius: 12px;
  background: var(--cream);
  border: 1px solid var(--border-mid);
  color: var(--text-mid);
}
.tag-wedding  { background: #f0ebe4; border-color: #d4c9b9; color: #7a6a55; }
.tag-newborn  { background: #e8f0ec; border-color: #c4d9cc; color: #4a7a5a; }
.tag-studio   { background: #e8ecf4; border-color: #c4cfd9; color: #3a5a7a; }
.tag-other    { background: var(--cream); }

.status-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
}
.status-enquiry    { background: #fff3e0; color: #a06a00; }
.status-booked     { background: #e3f2fd; color: #1a5f8a; }
.status-in_progress{ background: #e8f5e9; color: #2e7d32; }
.status-delivered  { background: #f3e5f5; color: #6a1b9a; }
.status-archived   { background: var(--cream); color: var(--text-light); }

/* --- Journey checklist ------------------------------------ */
.journey-timeline { position: relative; padding-left: 28px; }
.journey-timeline::before {
  content: '';
  position: absolute;
  left: 9px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}

.journey-item {
  position: relative;
  padding: 0 0 20px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.journey-item:last-child { padding-bottom: 0; }

.journey-dot {
  position: absolute;
  left: -19px;
  top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border-mid);
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.journey-dot.done {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.journey-dot.current {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,115,85,.15);
}

.journey-content { flex: 1; min-width: 0; }
.journey-label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.journey-item.done .journey-label {
  color: var(--text-mid);
  text-decoration: line-through;
  text-decoration-color: var(--text-light);
}
.journey-desc {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 2px;
}
.journey-date {
  font-size: .72rem;
  color: var(--green);
  margin-top: 2px;
}

/* --- Progress bar ----------------------------------------- */
.progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 3px;
  transition: width .3s ease;
}

/* --- Alerts ----------------------------------------------- */
.alert {
  padding: 13px 18px;
  border-radius: var(--radius);
  font-size: .88rem;
  margin-bottom: 20px;
  border-left: 4px solid;
}
.alert-success { background: #e8f5e9; border-color: var(--green); color: #2e7d32; }
.alert-error   { background: #fce8e6; border-color: var(--red); color: #b71c1c; }
.alert-info    { background: #e3f2fd; border-color: var(--blue); color: #1565c0; }
.alert-warning { background: #fff8e1; border-color: var(--gold); color: #7a5a00; }

/* --- Modals ----------------------------------------------- */
.modal-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(45,41,38,.5);
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 560px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* --- Auth pages ------------------------------------------- */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 20px;
}
.auth-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.auth-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.auth-logo-sub {
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 36px;
}
.auth-card h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.auth-card .subtitle {
  font-size: .85rem;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.auth-card .form-group { text-align: left; }
.auth-card .btn { width: 100%; justify-content: center; }
.auth-divider {
  margin: 20px 0;
  text-align: center;
  font-size: .78rem;
  color: var(--text-light);
}

/* --- Roadmap ---------------------------------------------- */
.roadmap-phase {
  margin-bottom: 32px;
}
.roadmap-phase-header {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.roadmap-phase-progress {
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  font-weight: 400;
  color: var(--text-light);
  margin-left: auto;
}
.roadmap-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .88rem;
}
.roadmap-item:hover { background: var(--cream); }
.roadmap-item.done { color: var(--text-light); }
.roadmap-item.done .rm-label { text-decoration: line-through; }
.roadmap-item input[type=checkbox] {
  width: 16px; height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

/* --- Responsive ------------------------------------------- */
@media (max-width: 900px) {
  .sidebar { width: 220px; }
  .main-content { margin-left: 220px; }
}

@media (max-width: 680px) {
  .sidebar {
    position: fixed;
    transform: translateX(-100%);
    transition: transform .25s;
    width: 260px;
    z-index: 300;
  }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .topbar { padding: 0 16px; }
  .page-body { padding: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .auth-card { padding: 32px 24px; }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 4px;
    margin-right: 8px;
  }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 1px; }
}
@media (min-width: 681px) { .hamburger { display: none; } }

/* --- Utility ---------------------------------------------- */
.text-muted  { color: var(--text-light); }
.text-accent { color: var(--accent); }
.text-small  { font-size: .82rem; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.flex { display: flex; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { display: flex; align-items: center; gap: 10px; }
.w-full { width: 100%; }
.text-center { text-align: center; }
.hidden { display: none; }

/* --- Multi-check dropdown --------------------------------- */
.multi-check-wrap {
  position: relative;
}
.multi-check-btn {
  min-width: 160px;
  background: var(--warm-white);
  user-select: none;
}
.multi-check-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 180px;
  background: var(--warm-white);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  padding: 6px 0 0;
  flex-direction: column;
}
.multi-check-dropdown.open { display: flex; }
.multi-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  font-size: .88rem;
  cursor: pointer;
  color: var(--text);
}
.multi-check-item:hover { background: var(--cream); }
.multi-check-item input[type=checkbox] {
  accent-color: var(--accent);
  width: 15px; height: 15px;
  flex-shrink: 0;
}

/* Ornamental divider */
.ornament {
  text-align: center;
  color: var(--border-mid);
  font-size: 1.2rem;
  margin: 24px 0;
  letter-spacing: .4em;
}

/* ============================================================
   Phase 2 — Messages, Files, Gallery
   ============================================================ */

/* Message thread */
.msg-thread {
  max-height: 420px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px 0 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.msg-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: .88rem;
  line-height: 1.5;
}
.msg-staff {
  background: var(--cream);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}
.msg-client {
  background: var(--accent);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}
.msg-meta {
  font-size: .7rem;
  opacity: .65;
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.msg-body { white-space: pre-wrap; }

/* File rows */
.file-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.file-row:last-child { border-bottom: none; }
.file-name {
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.file-name:hover { color: var(--accent); }

/* Unread badge */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--accent);
  color: #fff;
  border-radius: 9px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 0;
  vertical-align: middle;
  margin-left: 4px;
}

/* PDF preview modal */
.pdf-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.pdf-modal-overlay.open { display: flex; }
.pdf-modal {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
  display: flex;
  flex-direction: column;
  width: min(90vw, 900px);
  height: min(90vh, 1100px);
}
.pdf-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.pdf-modal-title {
  font-family: var(--font-serif);
  font-size: .95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pdf-modal-header a { font-size: .8rem; white-space: nowrap; }
.pdf-modal-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 0 4px;
  flex-shrink: 0;
}
.pdf-modal-close:hover { color: var(--text); }
.pdf-modal iframe {
  flex: 1;
  border: none;
  border-radius: 0 0 6px 6px;
  width: 100%;
}

/* Notification bell */
.notif-bell {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  text-decoration: none;
  margin-right: 12px;
  transition: color .15s;
}
.notif-bell:hover { color: var(--accent); }
.notif-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: .6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Notification list */
.notif-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .1s;
}
.notif-item:last-child { border-bottom: none; }
.notif-item.unread .notif-dot { background: var(--accent); }
.notif-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 5px;
}
.notif-content { flex: 1; min-width: 0; }
.notif-title { font-weight: 600; font-size: .9rem; margin-bottom: 2px; }
.notif-body  { font-size: .8rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.notif-time  { font-size: .72rem; color: var(--text-muted); margin-top: 3px; }
