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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #fafaf6;
  --bg2:      #f2f1ec;
  --bg3:      #e8e7e0;
  --ink:      #1a1a18;
  --ink2:     rgba(26,26,24,.55);
  --ink3:     rgba(26,26,24,.35);
  --border:   rgba(26,26,24,.10);
  --border2:  rgba(26,26,24,.06);
  --accent:   #c8440a;
  --accent2:  rgba(200,68,10,.10);
  --nav-bg:   #1a1a18;
  --nav-text: rgba(250,250,246,.65);
  --nav-active: #fafaf6;
  --topbar-h: 56px;
}

/* ── Dark mode overrides ─────────────────────────────────────────────────── */
[data-theme="dark"] {
  --bg:       #1e1e1c;
  --bg2:      #272725;
  --bg3:      #303030;
  --ink:      #f0ede8;
  --ink2:     rgba(240,237,232,.55);
  --ink3:     rgba(240,237,232,.32);
  --border:   rgba(240,237,232,.10);
  --border2:  rgba(240,237,232,.05);
  --accent:   #e05a20;
  --accent2:  rgba(224,90,32,.18);
  --nav-bg:   #111110;
  --nav-text: rgba(240,237,232,.55);
  --nav-active: #f0ede8;
}

html, body {
  height: 100%;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Topbar ──────────────────────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 32px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.topbar-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fafaf6;
  flex-shrink: 0;
  letter-spacing: -.3px;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.topbar-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--nav-text);
  padding: 6px 12px;
  border-radius: 5px;
  transition: all .15s;
  text-decoration: none;
}
.topbar-nav a:hover { color: #fafaf6; background: rgba(255,255,255,.08); }
.topbar-nav a.active { color: #fafaf6; background: rgba(255,255,255,.12); }

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ── Subbar (section tabs) ───────────────────────────────────────────────── */
.subbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.subbar::-webkit-scrollbar { display: none; }

.subbar-tab {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink2);
  padding: 10px 16px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s;
  text-decoration: none;
}
.subbar-tab:hover { color: var(--ink); text-decoration: none; }
.subbar-tab.active { color: var(--ink); border-bottom-color: var(--accent); }

/* ── Layout ──────────────────────────────────────────────────────────────── */
.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 28px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 20px;
  align-items: start;
}

/* Sidebar pushed to the right edge */
.dashboard-sidebar {
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .dashboard-sidebar { padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 24px; }
}

/* ── Cards ───────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.card-pad { padding: 20px 24px; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .15s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: #a8380a; color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-outline:hover { background: var(--bg2); }

.btn-ghost-dark {
  background: rgba(255,255,255,.08);
  color: rgba(250,250,246,.8);
  border: 1px solid rgba(255,255,255,.10);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,.15); color: #fafaf6; }

.btn-danger {
  background: rgba(220,38,38,.08);
  color: #dc2626;
  border: 1px solid rgba(220,38,38,.2);
}
.btn-danger:hover { background: rgba(220,38,38,.16); }

.btn-sm { padding: 5px 10px; font-size: 12px; }
.btn-xs { padding: 3px 8px; font-size: 11px; }

/* ── Article card ────────────────────────────────────────────────────────── */
.article-card {
  border-bottom: 1px solid var(--border2);
  overflow: hidden;
}
.article-card:last-child { border-bottom: none; }

/* Collapsed header — the clickable row */
.article-header {
  padding: 16px 0 14px;
  cursor: pointer;
  user-select: none;
}
.article-header:hover .article-title { color: var(--accent); }

.article-meta {
  font-size: 11px;
  color: var(--ink3);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.article-source {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink2);
}
.article-dot { color: var(--border); }

/* Title row: title + toggle arrow side by side */
.article-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  flex: 1;
  transition: color .15s;
}

/* Expand/collapse chevron */
.article-toggle-arrow {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--ink3);
  line-height: 1;
  margin-top: 2px;
  transition: transform .22s cubic-bezier(.4,0,.2,1), color .15s;
  display: inline-block;
}
.article-toggle-arrow.open {
  transform: rotate(90deg);
  color: var(--accent);
}

/* Expanded content panel */
.article-expand {
  display: none;
  padding: 0 0 18px;
  animation: expandIn .2s ease;
}
.article-expand.open { display: block; }

@keyframes expandIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.article-summary {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 14px;
  /* Show approx 4-5 lines by clamping */
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Groq synthesis block */
.groq-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 14px;
}
.groq-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 8px;
}
.groq-content {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.75;
}

/* Groq loading indicator */
.groq-loading {
  font-size: 12px;
  color: var(--ink3);
  padding: 10px 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.groq-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: inline-block;
  flex-shrink: 0;
}

.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.read-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .02em;
}
.read-link:hover { text-decoration: underline; }

/* ── Relevance badge ─────────────────────────────────────────────────────── */
.rel-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: .04em;
}
.rel-high   { background: rgba(200,68,10,.12);  color: #c8440a; }
.rel-medium { background: rgba(180,130,0,.12);  color: #907000; }
.rel-low    { background: rgba(26,26,24,.07);   color: var(--ink3); }

/* ── Date group header ───────────────────────────────────────────────────── */
.date-group-header {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--ink3);
  padding: 18px 0 8px;
  border-bottom: 1px solid var(--border2);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: color .15s;
}
.date-group-header:hover { color: var(--ink2); }
.date-group-arrow {
  font-size: 14px;
  line-height: 1;
  transition: transform .22s cubic-bezier(.4,0,.2,1);
  display: inline-block;
}
.date-group-header.collapsed .date-group-arrow {
  transform: rotate(-90deg);
}
.date-group-body {
  overflow: hidden;
  transition: none;
}

/* ── Section header ──────────────────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 2px solid currentColor;
}
.section-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-count {
  font-size: 11px;
  color: var(--ink3);
}

/* ── Sidebar ─────────────────────────────────────────────────────────────── */
.sidebar-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 16px;
  overflow: hidden;
}
.sidebar-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink3);
  padding: 14px 18px 10px;
  border-bottom: 1px solid var(--border);
}
.sidebar-body { padding: 14px 18px; }

.next-time {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.next-label { font-size: 12px; color: var(--ink2); margin-bottom: 14px; }

.section-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border2);
  font-size: 13px;
}
.section-pill:last-child { border-bottom: none; }
.section-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border2);
}
.stat-row:last-child { border-bottom: none; }
.stat-value { font-weight: 700; color: var(--ink); }
.stat-label { color: var(--ink2); }

/* ── Flash ───────────────────────────────────────────────────────────────── */
.flash {
  padding: 11px 16px;
  border-radius: 5px;
  font-size: 13px;
  margin-bottom: 20px;
}
.flash-success { background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.2); color: #15803d; }
.flash-error   { background: rgba(220,38,38,.08); border: 1px solid rgba(220,38,38,.2); color: #dc2626; }

/* ── Forms ───────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 14px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink2);
  margin-bottom: 5px;
}
.form-control {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--ink);
  padding: 8px 11px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  transition: border-color .15s;
}
.form-control:focus { outline: none; border-color: var(--accent); }
textarea.form-control { resize: vertical; min-height: 72px; }
.form-hint { font-size: 11px; color: var(--ink3); margin-top: 4px; }

/* ── Table ───────────────────────────────────────────────────────────────── */
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th {
  text-align: left;
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink3);
  border-bottom: 1px solid var(--border);
}
td { padding: 10px 12px; border-bottom: 1px solid var(--border2); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--bg2); }

/* ── Badge ───────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 600;
}
.badge-ok   { background: rgba(34,197,94,.10); color: #16a34a; border: 1px solid rgba(34,197,94,.25); }
.badge-fail { background: rgba(220,38,38,.10); color: #dc2626; border: 1px solid rgba(220,38,38,.2); }
.badge-wait { background: rgba(245,158,11,.10); color: #b45309; border: 1px solid rgba(245,158,11,.25); }

/* ── Shimmer loading ─────────────────────────────────────────────────────── */
.shimmer {
  background: linear-gradient(90deg, var(--bg2) 25%, var(--bg3) 50%, var(--bg2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 4px;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.shimmer-line { height: 14px; margin-bottom: 8px; }
.shimmer-title { height: 22px; width: 85%; margin-bottom: 10px; }
.shimmer-text  { height: 13px; width: 100%; margin-bottom: 6px; }
.shimmer-text-sm { height: 13px; width: 60%; }

/* ── Loading overlay ─────────────────────────────────────────────────────── */
.loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250,250,246,.7);
  backdrop-filter: blur(2px);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.loading-overlay.active { display: flex; }
.loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-text { font-size: 13px; color: var(--ink2); }

/* ── Dividers ────────────────────────────────────────────────────────────── */
.hr { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.hr-light { border: none; border-top: 1px solid var(--border2); margin: 16px 0; }

/* ── Settings page ───────────────────────────────────────────────────────── */
.settings-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.color-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 6px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 680px) {
  .topbar { padding: 0 16px; gap: 16px; }
  .page   { padding: 20px 16px; }
  .subbar { padding: 0 16px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   SIDEBAR LAYOUT  (replaces old topbar layout)
   ══════════════════════════════════════════════════════════════════════════ */

/* Override html/body height so sidebar fills viewport */
html, body { overflow: hidden; }

.app-layout {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* ── Sidebar shell ───────────────────────────────────────────────────────── */
.sidebar {
  width: 220px;
  flex-shrink: 0;
  background: var(--nav-bg);
  display: flex;
  flex-direction: column;
  padding: 16px 10px;
  border-right: 1px solid rgba(255,255,255,.06);
  overflow-y: auto;
  z-index: 200;
  transition: transform .22s cubic-bezier(.4,0,.2,1);
}

/* ── Logo ────────────────────────────────────────────────────────────────── */
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 20px;
  text-decoration: none;
  flex-shrink: 0;
}
.sidebar-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sidebar-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: #fafaf6;
  letter-spacing: -.01em;
  line-height: 1;
}
.sidebar-logo-ai {
  color: var(--accent);
}

/* ── Nav groups ──────────────────────────────────────────────────────────── */
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-nav-bottom {
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ── Nav items ───────────────────────────────────────────────────────────── */
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--nav-text);
  text-decoration: none;
  cursor: pointer;
  transition: background .12s, color .12s;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
}
.sidebar-item:hover {
  background: rgba(255,255,255,.08);
  color: var(--nav-active);
  text-decoration: none;
}
.sidebar-item.active {
  background: rgba(255,255,255,.12);
  color: var(--nav-active);
}

/* ── Sidebar icon wrapper ────────────────────────────────────────────────── */
.sidebar-item-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Action buttons ──────────────────────────────────────────────────────── */
.sidebar-action {
  margin-top: 2px;
}
.theme-toggle {
  color: var(--nav-text);
  opacity: .75;
  margin-bottom: 6px;
}
.theme-toggle:hover {
  opacity: 1;
  background: rgba(255,255,255,.06) !important;
  color: var(--nav-active) !important;
}
.sidebar-action-primary {
  color: #fafaf6;
  background: rgba(200,68,10,.18);
}
.sidebar-action-primary:hover {
  background: rgba(200,68,10,.32);
  color: #fff;
}

/* ── Main area ───────────────────────────────────────────────────────────── */
.app-main {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--bg);
}

.main-content {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  padding: 28px 32px;
}

/* ── Mobile toggle button ────────────────────────────────────────────────── */
.sidebar-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 12px 16px 0;
  background: var(--nav-bg);
  border: none;
  border-radius: 7px;
  color: rgba(250,250,246,.8);
  cursor: pointer;
  flex-shrink: 0;
}

/* ── Mobile overlay ──────────────────────────────────────────────────────── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 199;
}
.sidebar-overlay.active { display: block; }

/* ── Responsive: mobile sidebar ──────────────────────────────────────────── */
@media (max-width: 768px) {
  html, body { overflow: auto; }
  .app-layout { flex-direction: column; height: auto; min-height: 100vh; overflow: visible; }
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    transform: translateX(-100%);
    box-shadow: 4px 0 24px rgba(0,0,0,.25);
  }
  .sidebar.open { transform: translateX(0); }
  .app-main { overflow-y: auto; min-height: 100vh; }
  .sidebar-toggle { display: flex; }
  .main-content { padding: 20px 16px; }
}

/* ── Sidebar section sub-items ────────────────────────────────────────────── */
.sidebar-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(250,250,246,.30);
  padding: 12px 10px 4px;
}
.sidebar-item-section {
  padding-left: 18px;
  font-size: 12px;
}

/* ── Article share dropdown ──────────────────────────────────────────────── */
.share-wrap {
  position: relative;
  flex-shrink: 0;
}
.share-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 5px;
  color: var(--ink3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  transition: color .15s, background .15s;
}
.share-btn:hover {
  color: var(--accent);
  background: var(--accent2);
}
.share-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  z-index: 60;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  min-width: 148px;
  overflow: hidden;
}
.share-menu.open { display: block; }
.share-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 14px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border2);
  cursor: pointer;
  font-size: 13px;
  color: var(--ink);
  text-align: left;
  transition: background .12s;
}
.share-menu-item:last-child { border-bottom: none; }
.share-menu-item:hover { background: var(--bg2); color: var(--accent); }

/* ── RSS feed rows (settings) ────────────────────────────────────────────── */
.rss-feed-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border2);
  min-width: 0;
}
.rss-feed-row:last-child { border-bottom: none; }

/* ── Article feedback buttons ────────────────────────────────────────────── */
.feedback-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 4px;
}

.feedback-label {
  font-size: 12px;
  color: var(--ink3);
  margin-right: 2px;
}

.feedback-btn {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  transition: background .15s, border-color .15s, transform .1s;
  color: var(--ink2);
}

.feedback-btn:hover {
  background: var(--bg2);
  border-color: var(--border2);
  transform: scale(1.08);
}

.feedback-btn.active {
  background: var(--accent2);
  border-color: var(--accent);
  color: var(--accent);
}
