/* Reusable UI components */

/* Contact row */
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  -webkit-user-select: none;
}

.contact-row:active { background: var(--bg); }

.contact-row-info { flex: 1; min-width: 0; }

.contact-row-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-row-sub {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.contact-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

/* Search bar */
.search-bar {
  padding: 10px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.search-input-wrap {
  position: relative;
}

.search-input-wrap svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 9px 12px 9px 36px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 15px;
  font-family: var(--font);
  background: var(--bg);
  outline: none;
}

/* Filter chips */
.filter-chips {
  display: flex;
  gap: 8px;
  padding: 8px 16px;
  overflow-x: auto;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-chips::-webkit-scrollbar { display: none; }

.filter-chip {
  flex-shrink: 0;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font);
  white-space: nowrap;
}

.filter-chip.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ── Confirm three-layer layout ──────────────────────────────────────────── */
.confirm-layout {
  position: absolute;    /* fills the .screen regardless of its overflow-y */
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.confirm-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.confirm-token-shelf {
  flex-shrink: 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.confirm-actions {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.confirm-actions .btn { flex: 1; }
.confirm-actions .btn-primary { flex: 2; }

/* ── Confirm card form ───────────────────────────────────────────────────── */
.confirm-card-image {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #eee;
  position: relative;
}

.confirm-card-image img {
  width: 100%;
  display: block;
  max-height: 160px;
  object-fit: contain;
}

.confirm-card-back .confirm-back-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 3px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.add-back-btn {
  width: 100%;
  padding: 8px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  background: none;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  text-align: center;
}

.progress-dots {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}

.progress-dots-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.progress-dots-row { display: flex; gap: 6px; }

.progress-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
}
.progress-dot.done    { background: var(--accent); }
.progress-dot.current { background: var(--accent); width: 20px; border-radius: 4px; }

/* ── Field rows ──────────────────────────────────────────────────────────── */
.confirm-fields {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.15s;
}

/* When a drag is active, tell the user the fields are drop targets */
.confirm-fields.drag-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(29,111,66,0.12);
}

.confirm-field-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 0 12px;
  transition: background 0.1s;
}

.confirm-field-row:last-child { border-bottom: none; }

/* Empty field — soft dashed hint inside */
.confirm-field-row.field-empty .confirm-field-input::placeholder {
  color: var(--border);
  font-style: italic;
}

/* Field lit up under a dragged token */
.confirm-field-row.drop-hover {
  background: var(--accent-light);
}

.confirm-field-row.drop-hover .confirm-field-label {
  color: var(--accent);
}

.confirm-field-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  width: 72px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.confirm-field-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 11px 0;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: transparent;
}

/* ── Field drag handle ───────────────────────────────────────────────────── */
.field-drag-handle {
  display: flex;
  align-items: center;
  padding: 0 8px 0 0;
  cursor: grab;
  touch-action: none;
  flex-shrink: 0;
  color: var(--text-muted);
  /* Widen tap target without changing layout */
  margin-left: -4px;
  padding-left: 4px;
}

.field-drag-handle:active { cursor: grabbing; }

/* Field being dragged — dim the source input */
.confirm-field-row.field-dragging .confirm-field-input {
  opacity: 0.35;
}

/* Clear (×) button on each field */
.field-clear-btn {
  background: none;
  border: none;
  color: var(--border);
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  padding: 0 0 0 6px;
  flex-shrink: 0;
  font-family: var(--font);
  transition: color 0.12s;
  align-self: center;
}
.field-clear-btn:active { color: var(--danger); }

/* "+ Add email / phone" row inside the fields card */
.confirm-add-row {
  display: flex;
  padding: 5px 12px 5px 34px; /* 34px aligns with field input after drag-handle+label */
  border-bottom: 1px solid var(--border);
}
.confirm-add-row:last-child { border-bottom: none; }

.confirm-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  padding: 3px 0;
}

/* ── Token shelf ─────────────────────────────────────────────────────────── */
.shelf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 14px 5px;
}

.shelf-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.shelf-hint {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
}

.shelf-tokens {
  display: flex;
  gap: 7px;
  padding: 4px 14px 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex-wrap: wrap;
  max-height: 88px;     /* ~2 rows of tokens */
  overflow-y: hidden;
}
.shelf-tokens::-webkit-scrollbar { display: none; }

.ocr-token {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font);
  color: var(--text);
  white-space: nowrap;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: grab;
  /* disable native touch behaviours so our drag works */
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  transition: opacity 0.15s, border-color 0.15s;
}

.ocr-token .tok-icon { font-size: 12px; }

/* Pre-assigned (emails, phones already in fields) */
.ocr-token.used {
  opacity: 0.35;
  border-style: dashed;
}

/* While being dragged */
.ocr-token.token-dragging {
  opacity: 0.25;
}

/* ── Ghost pill that follows the finger ──────────────────────────────────── */
.drag-ghost {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  transform: scale(1.06) rotate(-1.5deg);
  transition: none;
}

/* Context section */
.context-section {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.context-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.context-toggle-arrow {
  transition: transform 0.2s;
  color: var(--text-muted);
}
.context-toggle.open .context-toggle-arrow { transform: rotate(180deg); }

.context-body {
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  display: none;
}
.context-body.open { display: block; }

/* Tier selector */
.tier-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.tier-btn {
  flex: 1;
  padding: 7px 0;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  background: var(--bg);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-muted);
}

.tier-btn.t1.active { background: var(--t1-bg); color: var(--t1); border-color: var(--t1); }
.tier-btn.t2.active { background: var(--t2-bg); color: var(--t2); border-color: var(--t2); }
.tier-btn.t3.active { background: var(--t3-bg); color: var(--t3); border-color: var(--t3); }
.tier-btn.t4.active { background: var(--t4-bg); color: var(--t4); border-color: var(--t4); }

/* Settings list */
.settings-list {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 0 16px;
}

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.settings-row:last-child { border-bottom: none; }
.settings-row:active { background: var(--bg); }

.settings-row-label {
  font-size: 15px;
  color: var(--text);
}

.settings-row-value {
  font-size: 14px;
  color: var(--text-muted);
}

.settings-row-arrow {
  color: var(--text-muted);
  margin-left: 8px;
}

/* Chip multi-input */
.chip-input-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 8px 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 600;
}

.chip-remove {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  padding: 0 0 0 2px;
}

.chip-add-btn {
  background: none;
  border: 1px dashed var(--accent);
  color: var(--accent);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
}

/* (old tap-to-assign chip shelf removed — replaced by drag-and-drop token shelf) */

/* Session summary */
.summary-list {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  border: 1px solid var(--border);
}

.summary-row-left { flex: 1; min-width: 0; }
.summary-row-name { font-size: 14px; font-weight: 600; }
.summary-row-company { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── Contact list — new layout classes ──────────────────────────────────── */

/* Section header (grouped by event) */
.contact-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 16px 5px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 5;
}

.contact-section-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-section-date {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.contact-section-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--border);
  border-radius: 20px;
  padding: 1px 8px;
  min-width: 22px;
  text-align: center;
}

/* Tier-ring avatars */
.avatar-t1 { background: var(--t1-bg);  color: var(--t1);  box-shadow: 0 0 0 2.5px var(--t1); }
.avatar-t2 { background: var(--t2-bg);  color: var(--t2);  box-shadow: 0 0 0 2.5px var(--t2); }
.avatar-t3 { background: var(--t3-bg);  color: var(--t3);  box-shadow: 0 0 0 2.5px var(--t3); }
.avatar-t4 { background: var(--t4-bg);  color: var(--t4);  box-shadow: 0 0 0 2px var(--border); }

/* Swipeable row */
.cl-row {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  -webkit-user-select: none;
}

.cl-row:active .cl-row-inner { background: var(--bg); }

.cl-swipe-bg {
  position: absolute;
  inset: 0;
  background: var(--danger);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
  gap: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.cl-row-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface);
  transition: background 0.15s;
  will-change: transform;
}

.cl-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

/* Quick-action icons on the right of each row */
.cl-quick-actions {
  display: flex;
  gap: 4px;
  align-items: center;
}

.cl-qa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

.cl-qa-btn:active {
  color: var(--accent);
  background: var(--accent-light);
}

/* Next-action badge */
.na-badge {
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
  padding: 2px 6px;
  margin-top: 3px;
  display: inline-block;
}

.na-overdue {
  background: #fdf0ef;
  color: var(--t1);
}

.na-soon {
  background: #fef9ec;
  color: var(--t2);
}

/* Select-mode circle */
.cl-select-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--surface);
}

.cl-select-circle.checked {
  background: var(--accent);
  border-color: var(--accent);
}

/* Sort / Select buttons in search bar */
.sort-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font);
  white-space: nowrap;
  flex-shrink: 0;
}

.sort-btn:active { background: var(--border); }

/* Undo toast (swipe-delete undo) */
.undo-toast {
  position: fixed;
  bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom) + 12px);
  left: 16px;
  right: 16px;
  background: #2d2d2d;
  color: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  z-index: 200;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}

.undo-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.undo-toast-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  padding: 4px 0 4px 16px;
}

/* ── Contact detail screen ───────────────────────────────────────────────── */

.cd-wrap {
  padding-bottom: 32px;
}

.cd-top-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 8px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.cd-back-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent);
  padding: 4px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.cd-top-name {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cd-top-tier { flex-shrink: 0; }

/* Hero */
.cd-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px 8px;
  gap: 12px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.cd-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  flex-shrink: 0;
}

.cd-card-img-wrap {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #eee;
  cursor: pointer;
}

.cd-card-img {
  width: 100%;
  display: block;
  max-height: 180px;
  object-fit: contain;
  background: #f5f5f5;
}

/* Quick-action row */
.cd-action-row {
  display: flex;
  align-items: stretch;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.cd-action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 12px 4px;
  background: none;
  border: none;
  border-right: 1px solid var(--border);
  cursor: pointer;
  font-size: 12px;
  font-family: var(--font);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: background 0.15s;
}

.cd-action-btn:last-child { border-right: none; }
.cd-action-btn:active { background: var(--accent-light); }

.cd-action-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.cd-action-disabled {
  color: var(--text-muted);
  cursor: default;
}
.cd-action-disabled:active { background: none; }
.cd-action-disabled .cd-action-icon {
  background: var(--bg);
  color: var(--text-muted);
}

/* Session badge */
.cd-session-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

/* Section labels */
.cd-section-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 14px 16px 5px;
}

/* Fields card */
.cd-fields-card {
  margin: 0 16px;
}

/* Chip + add sections */
.cd-chip-section {
  padding: 4px 16px 8px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Add link below chips */
.cd-add-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  padding: 4px 0 2px;
}

/* Inline add row (no prompt()) */
.cd-inline-add {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
}

.cd-inline-input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font);
  background: var(--surface);
  color: var(--text);
  outline: none;
}

.cd-inline-confirm {
  padding: 8px 12px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
}

.cd-inline-cancel {
  padding: 8px 10px;
  background: none;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font);
}

/* Notes textarea */
.cd-notes-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font);
  background: var(--surface);
  color: var(--text);
  outline: none;
  resize: vertical;
  min-height: 72px;
  transition: border-color 0.15s;
  margin-top: 4px;
}
.cd-notes-input:focus { border-color: var(--accent); }

/* Meta / history line */
.cd-meta {
  padding: 10px 16px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Footer delete */
.cd-footer-actions {
  padding: 8px 16px 16px;
}

/* Tier filter chips */
.t1-chip.active { background: var(--t1-bg); color: var(--t1); border-color: var(--t1); }
.t2-chip.active { background: var(--t2-bg); color: var(--t2); border-color: var(--t2); }
.t3-chip.active { background: var(--t3-bg); color: var(--t3); border-color: var(--t3); }
.t4-chip.active { background: var(--t4-bg); color: var(--t4); border-color: var(--t4); }

/* Home screen recent sessions */
.session-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.session-row:active { background: var(--bg); }

.session-row-info { flex: 1; }
.session-row-name { font-size: 15px; font-weight: 600; }
.session-row-meta { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.session-row-count {
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg);
  border-radius: 12px;
  padding: 3px 10px;
  font-weight: 600;
}
