/* styles-modals-extracted.css — Extracted inline styles from index.html modals
 * Created: 2026-03-27
 * Per DESIGN_SYSTEM.md: no inline styles for static properties
 */

/* ── Reminder Modal ── */
.reminder-note-title {
  color: var(--text-dim);
  font-size: var(--fs-base); /* 0.85rem */
  margin-bottom: 12px;
}

.reminder-label {
  font-size: var(--fs-sm); /* 0.8rem → 0.75rem */
  color: var(--text-dim);
  display: block;
  margin-bottom: 4px;
}

.reminder-input {
  width: 100%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  border-radius: var(--radius-base); /* 8px */
  padding: 8px 10px;
  font-size: var(--fs-md); /* 0.9rem → 1rem */
  margin-bottom: 12px;
  box-sizing: border-box;
}

.reminder-input--last {
  margin-bottom: 16px;
}

/* ── SR Due Badge ── */
.sr-due-badge {
  display: none;
  background: var(--color-danger);
  color: var(--text-main);
  border-radius: var(--radius-base);
  padding: 0 5px;
  font-size: var(--fs-xs); /* 0.65rem */
  font-weight: 700;
  min-width: 16px;
  text-align: center;
  line-height: 16px;
  margin-left: 4px;
}

/* ── Weather ── */
.weather-desc {
  font-size: var(--fs-sm); /* 0.8rem → 0.75rem */
  color: var(--text-dim);
}

.weather-forecast-row {
  display: flex;
  gap: 4px;
  margin-top: 8px;
  overflow-x: auto;
}

/* ── Brand icon (header) ── */
.brand-icon {
  border-radius: var(--radius-base); /* 8px */
  flex-shrink: 0;
}

/* ── Export modal dividers / section labels ── */
.gn-divider {
  margin: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gn-text-label {
  font-size: var(--fs-xs);
  color: var(--text-dim);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gn-text-label--spaced {
  margin-top: 10px;
}

/* ── Timeline Modal ── */
.timeline-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-toast);          /* 10000 — above standard modals */
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  flex-direction: column;
}

.timeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 0;
}

.timeline-title {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: -0.5px;
}

.timeline-subtitle {
  font-size: var(--fs-sm);          /* 0.75rem ← 0.78rem */
  color: var(--primary);
  margin-top: 2px;
}

.timeline-select {
  background: var(--card-bg-solid);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  color: var(--text-dim);
  border-radius: var(--radius-base);
  padding: 6px 10px;
  font-size: var(--fs-sm);          /* 0.75rem ← 0.8rem */
  cursor: pointer;
  outline: none;
}

.timeline-search {
  background: var(--card-bg-solid);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  color: var(--text-dim);
  border-radius: var(--radius-base);
  padding: 6px 12px;
  font-size: var(--fs-sm);          /* 0.75rem ← 0.8rem */
  outline: none;
  width: 160px;
}

.timeline-close {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-dim);
  border-radius: var(--radius-base);
  padding: 8px 14px;
  cursor: pointer;
  font-size: var(--fs-base);        /* 0.85rem */
}

.timeline-container {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

/* ── Note Timer Bar ── */
.note-timer-bar {
  position: fixed;
  bottom: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-bottom: none;
  border-right: none;
  border-radius: var(--radius-md) 0 0 0;   /* 12px */
  padding: 6px 18px;
  align-items: center;
  gap: 12px;
  z-index: var(--z-modal-bg);
  font-size: var(--fs-sm);          /* 0.75rem ← 0.78rem */
  color: var(--primary-light);
}

.note-timer-display {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--text-dim);
  min-width: 48px;
}

.note-timer-words {
  color: var(--primary);
  font-size: var(--fs-xs);          /* 0.65rem ← 0.72rem */
}

.note-timer-btn {
  background: none;
  border: none;
  color: var(--primary-light);
  cursor: pointer;
  font-size: var(--fs-sm);          /* 0.75rem ← 0.8rem */
  padding: 0 4px;
}

.note-timer-toggle {
  background: rgba(var(--primary-rgb), 0.2);
  border: none;
  color: var(--primary-light);
  cursor: pointer;
  font-size: var(--fs-sm);          /* 0.75rem */
  padding: 3px 8px;
  border-radius: var(--radius-sm);  /* 6px */
}

/* ── RAG Modal ── */
.rag-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-toast);          /* 20000 → 10000 via token */
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.rag-box {
  background: linear-gradient(135deg, var(--bg-solid), var(--card-bg-solid));
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  border-radius: var(--radius-lg);  /* 16px ← 20px */
  padding: 28px;
  max-width: 560px;
  width: 92%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
}

.rag-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.rag-title {
  font-size: var(--fs-md);          /* 1rem */
  font-weight: 700;
  color: var(--text-dim);
}

.rag-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.rag-input {
  flex: 1;
  background: var(--glass-bg);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  color: var(--text-dim);
  border-radius: var(--radius-base); /* 8px ← 10px */
  padding: 10px 14px;
  font-size: var(--fs-base);        /* 0.85rem ← 0.88rem */
  outline: none;
}

.rag-search-btn {
  background: var(--primary);
  border: none;
  color: #fff;
  border-radius: var(--radius-base); /* 8px ← 10px */
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: var(--fs-base);        /* 0.85rem */
  white-space: nowrap;
}

.rag-results {
  flex: 1;
  overflow-y: auto;
  font-size: var(--fs-base);        /* 0.85rem */
  line-height: 1.6;
  color: var(--text-dim);
}

/* ── OCR Modal ── */
.ocr-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-toast);          /* 20000 → 10000 via token */
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.ocr-box {
  background: linear-gradient(135deg, var(--bg-solid), var(--card-bg-solid));
  border: 1px solid rgba(var(--color-success-rgb), 0.25);
  border-radius: var(--radius-lg);  /* 16px ← 20px */
  padding: 28px;
  max-width: 500px;
  width: 92%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
}

.ocr-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.ocr-title {
  font-size: var(--fs-md);          /* 1rem */
  font-weight: 700;
  color: var(--text-dim);
}

.ocr-subtitle {
  font-size: var(--fs-sm);          /* 0.75rem */
  color: var(--color-success);
}

.ocr-dropzone {
  border: 2px dashed rgba(var(--color-success-rgb), 0.35);
  border-radius: var(--radius-md);  /* 12px ← 14px */
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
}

.ocr-dropzone-icon {
  font-size: var(--fs-display);
  margin-bottom: 8px;
}

.ocr-dropzone-text {
  font-size: var(--fs-base);        /* 0.85rem ← 0.88rem */
}

.ocr-dropzone-link {
  color: var(--color-success);
  text-decoration: underline;
}

.ocr-dropzone-hint {
  font-size: var(--fs-xs);          /* 0.65rem ← 0.72rem */
  margin-top: 6px;
  opacity: 0.5;
}

.ocr-preview {
  margin-top: 12px;
  text-align: center;
}

.ocr-preview-img {
  max-height: 120px;
  border-radius: var(--radius-base);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ocr-textarea {
  width: 100%;
  min-height: 100px;
  background: var(--glass-bg);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  color: var(--text-dim);
  border-radius: var(--radius-base); /* 8px ← 10px */
  padding: 10px;
  font-size: var(--fs-base);        /* 0.85rem ← 0.82rem */
  resize: vertical;
  box-sizing: border-box;
}

.ocr-result-area {
  margin-top: 14px;
}

.ocr-btn-row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.ocr-btn {
  flex: 1;
  border: none;
  color: #fff;
  border-radius: var(--radius-base);
  padding: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: var(--fs-base);        /* 0.85rem ← 0.82rem */
}

.ocr-btn--success {
  background: var(--color-success);
}

.ocr-btn--primary {
  background: var(--primary);
}

.ocr-status {
  margin-top: 10px;
  font-size: var(--fs-sm);          /* 0.75rem ← 0.78rem */
  color: var(--text-muted);
  text-align: center;
}

/* ── Light-mode overrides: Timeline Modal ────────────────── */
body.light-mode .timeline-overlay {
  background: rgba(255,255,255,0.88);
}
body.light-mode .timeline-title { color: var(--text-main); }
body.light-mode .timeline-select {
  background: var(--card-bg-solid);
  border-color: rgba(0,0,0,0.12);
  color: var(--text-main);
}
body.light-mode .timeline-search {
  background: var(--card-bg-solid);
  border-color: rgba(0,0,0,0.12);
  color: var(--text-main);
}
body.light-mode .timeline-close {
  background: rgba(0,0,0,0.06);
  color: var(--text-main);
}

/* ── Light-mode overrides: Note Timer Bar ────────────────── */
body.light-mode .note-timer-bar {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border-color: rgba(0,0,0,0.1);
}
body.light-mode .note-timer-display { color: var(--text-main); }
body.light-mode .note-timer-btn { color: var(--primary-dark); }
body.light-mode .note-timer-toggle {
  background: rgba(var(--primary-rgb),0.12);
  color: var(--primary-dark);
}

/* ── Light-mode overrides: RAG Modal ─────────────────────── */
body.light-mode .rag-overlay {
  background: rgba(255,255,255,0.88);
}
body.light-mode .rag-box {
  background: linear-gradient(135deg, var(--bg-solid), var(--card-bg-solid));
  border-color: rgba(var(--primary-rgb),0.2);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
body.light-mode .rag-title { color: var(--text-main); }
body.light-mode .rag-input {
  background: rgba(0,0,0,0.04);
  border-color: rgba(var(--primary-rgb),0.2);
  color: var(--text-main);
}
body.light-mode .rag-results { color: var(--text-main); }

/* ── Light-mode overrides: OCR Modal ─────────────────────── */
body.light-mode .ocr-overlay {
  background: rgba(255,255,255,0.88);
}
body.light-mode .ocr-box {
  background: linear-gradient(135deg, var(--bg-solid), var(--card-bg-solid));
  border-color: rgba(var(--color-success-rgb),0.2);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
body.light-mode .ocr-title { color: var(--text-main); }
body.light-mode .ocr-dropzone {
  border-color: rgba(var(--color-success-rgb),0.3);
  color: var(--text-muted);
}
body.light-mode .ocr-preview-img {
  border-color: rgba(0,0,0,0.1);
}
body.light-mode .ocr-textarea {
  background: rgba(0,0,0,0.04);
  border-color: rgba(var(--primary-rgb),0.15);
  color: var(--text-main);
}
body.light-mode .ocr-status { color: var(--text-muted); }

/* ── Skip Link (WCAG) ── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  z-index: var(--z-toast);
  font-size: var(--fs-md);           /* 1rem */
  transition: top 0.2s;
}

/* ── Help Close Button ── */
.help-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  color: var(--text-dim);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-base); /* 8px */
  cursor: pointer;
  font-size: var(--fs-md);           /* 1rem */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Obsidian Modal ── */
.obsidian-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.obsidian-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-base); /* 8px */
  padding: 10px 12px;
  color: var(--text-main);
  font-size: var(--fs-base);         /* 0.85rem ← 13px */
  outline: none;
  box-sizing: border-box;
}

/* ── Note Cover Button ── */
.note-cover-btn {
  font-size: var(--fs-xl);
  cursor: pointer;
  padding: 2px 4px;
  border-radius: var(--radius-sm);   /* 6px */
  transition: 0.15s;
  background: none;
  border: none;
  flex-shrink: 0;
}

/* ── AI Image Preview ── */
.ai-preview-wrap {
  display: none;
  margin: 0 0.75rem 0.4rem;
  position: relative;
  width: fit-content;
}

.ai-preview-img {
  max-height: 80px;
  border-radius: var(--radius-base); /* 8px */
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: block;
}

.ai-preview-remove {
  position: absolute;
  top: -7px;
  right: -7px;
  background: var(--color-danger);   /* #ef4444 */
  color: white;
  border: none;
  border-radius: var(--radius-full);
  width: 18px;
  height: 18px;
  font-size: var(--fs-xs);           /* 0.65rem */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

/* ── Mini-modal Overlay (save-template, groq-key, add-habit, tavily-key) ── */
.gn-mini-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}

/* ── Telegram Settings Modal ── */
.tg-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: var(--z-toast);
  align-items: center;
  justify-content: center;
}

.tg-box {
  background: linear-gradient(135deg, #0f172a, #1a2744);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--radius-lg);   /* 16px ← 20px */
  padding: 28px;
  max-width: 460px;
  width: 92%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
}

.tg-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.tg-title {
  font-size: var(--fs-md);           /* 1rem */
  font-weight: 700;
  color: var(--text-dim);
}

.tg-subtitle {
  font-size: var(--fs-sm);           /* 0.75rem */
  color: var(--color-success, #22c55e);
}

.tg-close-btn {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-muted, #64748b);
  cursor: pointer;
  font-size: var(--fs-xl);
}

.tg-field {
  margin-bottom: 14px;
}

.tg-field--lg {
  margin-bottom: 20px;
}

.tg-link {
  color: var(--color-success, #22c55e);
  font-size: var(--fs-xs);           /* 0.65rem ← 0.72rem */
}

.tg-hint {
  opacity: 0.6;
}

.tg-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-base); /* 8px ← 10px */
  padding: 10px 14px;
  color: var(--text-dim);
  font-size: var(--fs-base);         /* 0.85rem ← 0.9rem */
  outline: none;
  box-sizing: border-box;
}

.tg-instructions {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-base); /* 8px ← 10px */
  padding: 12px;
  margin-bottom: 18px;
  font-size: var(--fs-sm);           /* 0.75rem ← 0.78rem */
  color: #86efac;
  line-height: 1.6;
}

.tg-instructions a {
  color: var(--color-success, #4ade80);
}

.tg-save-btn {
  flex: 1;
  background: linear-gradient(135deg, var(--color-success, #22c55e), #16a34a);
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-base); /* 8px ← 10px */
  cursor: pointer;
  font-size: var(--fs-base);         /* 0.85rem */
  font-weight: 600;
}

.tg-back-btn {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #4ade80;
  padding: 10px 14px;
  border-radius: var(--radius-base); /* 8px ← 10px */
  cursor: pointer;
  font-size: var(--fs-base);         /* 0.85rem */
}

/* ── Light-mode overrides: Skip Link ────────────────────────── */
body.light-mode .skip-link {
  background: var(--primary-dark);
}

/* ── Light-mode overrides: Help Close Button ────────────────── */
body.light-mode .help-close-btn {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text-main);
}

/* ── Light-mode overrides: Obsidian Input ───────────────────── */
body.light-mode .obsidian-input {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--text-main);
}

/* ── Light-mode overrides: AI Image Preview ─────────────────── */
body.light-mode .ai-preview-img {
  border-color: rgba(0, 0, 0, 0.12);
}

/* ── Light-mode overrides: Mini-modal Overlay ───────────────── */
body.light-mode .gn-mini-overlay {
  background: rgba(0, 0, 0, 0.4);
}

/* ── Light-mode overrides: Telegram Modal ───────────────────── */
body.light-mode .tg-overlay {
  background: rgba(255, 255, 255, 0.88);
}
body.light-mode .tg-box {
  background: linear-gradient(135deg, var(--bg-solid), var(--card-bg-solid));
  border-color: rgba(var(--color-success-rgb), 0.2);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}
body.light-mode .tg-title { color: var(--text-main); }
body.light-mode .tg-subtitle { color: var(--color-success); }
body.light-mode .tg-close-btn { color: var(--text-muted); }
body.light-mode .tg-input {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--text-main);
}
body.light-mode .tg-instructions {
  background: rgba(var(--color-success-rgb), 0.06);
  border-color: rgba(var(--color-success-rgb), 0.15);
  color: var(--text-main);
}
body.light-mode .tg-instructions a { color: var(--color-success); }
body.light-mode .tg-save-btn {
  background: linear-gradient(135deg, var(--color-success), #16a34a);
}
body.light-mode .tg-back-btn {
  background: rgba(var(--color-success-rgb), 0.06);
  border-color: rgba(var(--color-success-rgb), 0.15);
  color: var(--color-success);
}

/* ── Icon Picker (note icon emoji grid) ── */
.gn-icon-picker {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-base);
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  z-index: var(--z-dropdown);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gn-icon-picker-btn {
  background: none;
  border: none;
  font-size: var(--fs-xl);
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
}

/* ── Context Menu inline overrides (extracted from JS) ── */
.gn-ctx-menu--fixed {
  position: fixed;
  z-index: var(--z-toast);
  display: none;
  min-width: 200px;
  backdrop-filter: blur(12px);
}

.gn-ctx-menu--header {
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  z-index: var(--z-toast);
  min-width: 210px;
  animation: gn-popup-in 0.12s ease-out both;
}

/* ── Move-folder list item ── */
.gn-ctx-move-item {
  padding: 6px 12px;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.gn-ctx-move-item:hover {
  background: rgba(255, 255, 255, 0.08);
}
body.light-mode .gn-ctx-move-item:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* ── Publish modal title ── */
.gn-pub-title {
  margin: 0 0 12px;
  font-size: var(--fs-md);
}

/* ── Full-width block button (publish, etc.) ── */
.gn-btn--block {
  width: 100%;
}
.gn-btn--block + .gn-btn--block {
  margin-top: 8px;
}

/* ── Quick-action bar buttons ── */
.gn-qa-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--fs-md);
  padding: 4px 6px;
  border-radius: var(--radius-sm);
}

/* ── Auth migration banner ── */
.gn-auth-migration-banner {
  text-align: center;
  padding: 8px 12px;
  margin-bottom: 12px;
  border-radius: var(--radius-base);
  background: rgba(99, 102, 241, 0.12);
  color: var(--text-main, #e2e8f0);
  font-size: var(--fs-base);
  line-height: 1.5;
}

/* ── Progress bar (small variant for home / features) ── */
.gn-progress-track--sm {
  height: 6px;
  background: rgba(128, 128, 128, 0.15);
  border-radius: var(--radius-xs);
  margin: 8px 0 10px;
  overflow: hidden;
}

.gn-progress-fill--sm {
  height: 100%;
  border-radius: var(--radius-xs);
  background: var(--primary-light);
  transition: width 0.4s;
}

/* ── Word goal bar (features.js) ── */
.gn-wg-track {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xs);
  min-width: 50px;
}

.gn-wg-fill {
  height: 4px;
  border-radius: var(--radius-xs);
  transition: width 0.4s;
}

/* ── Template card inline styles ── */
.gn-tmpl-card {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.gn-tmpl-card-icon {
  font-size: var(--fs-xl);
}

.gn-tmpl-card-body {
  flex: 1;
}

.gn-tmpl-card-name {
  font-weight: 600;
  color: var(--text-dim);
  font-size: var(--fs-base);
}

.gn-tmpl-input--emoji {
  width: 60px;
}

.gn-tmpl-input--textarea {
  height: 120px;
  resize: vertical;
}

/* ── Light-mode overrides: Icon Picker ─────────────────── */
body.light-mode .gn-icon-picker {
  background: var(--card-bg-solid);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* ── Light-mode overrides: Auth Migration Banner ───────── */
body.light-mode .gn-auth-migration-banner {
  background: rgba(99, 102, 241, 0.08);
  color: var(--text-main);
}

/* ── Light-mode overrides: Word Goal Track ─────────────── */
body.light-mode .gn-wg-track {
  background: rgba(0, 0, 0, 0.06);
}
body.light-mode .gn-progress-track--sm {
  background: rgba(0, 0, 0, 0.08);
}
