:root {
  --bg: #000000;
  --surface: #1c1c1e;
  --surface-2: #242426;
  --surface-hover: #2c2c2e;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text: #f5f5f7;
  --text-secondary: #98989d;
  --text-muted: #6e6e73;
  --accent: #0a84ff;
  --accent-hover: #3d9bff;
  --danger: #ff453a;
  --warning-bg: rgba(255,159,10,0.15); --warning-text: #ff9f0a;
  --success-bg: rgba(48,209,88,0.15); --success-text: #30d158;
  --radius: 12px;
  --radius-lg: 18px;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Inter, sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html, body { background: var(--bg); }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  position: relative;
}

h1, h2, h3 { font-weight: 600; letter-spacing: -0.02em; margin: 0 0 4px; }
h1 { font-size: 25px; }
h2 { font-size: 15px; }
p { margin: 0 0 10px; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.14); border-radius: 10px; }

@keyframes fade-in { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.page { animation: fade-in .35s ease; }
@media (prefers-reduced-motion: reduce) { .page { animation: none; } }

/* Ambient background glow — sits behind everything, very subtle */
.bg-glow { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.bg-glow::before, .bg-glow::after {
  content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%;
  filter: blur(130px); opacity: 0.14;
}
.bg-glow::before { background: var(--accent); top: -220px; left: -180px; }
.bg-glow::after { background: #5e5ce6; bottom: -240px; right: -200px; }

/* Editorial serif accent — used only for content headlines, never UI chrome */
.editorial-heading {
  font-family: var(--font-serif); font-weight: 550; letter-spacing: -0.015em;
  line-height: 1.15;
}

/* ---------- App shell: sidebar + main ---------- */
.app-shell { display: flex; min-height: 100vh; }

.sidebar {
  width: 260px; flex-shrink: 0; background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  padding: 22px 16px; position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.sidebar-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; padding: 8px 9px 22px; }
.brand-logo { height: 16px; width: auto; display: block; }
.brand-name { font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; }

.sidebar-suche {
  position: relative; display: flex; align-items: center;
  margin: 0 0 18px;
}
.sidebar-suche svg {
  position: absolute; left: 11px; width: 15px; height: 15px;
  color: var(--text-muted); pointer-events: none;
}
.sidebar-suche input {
  width: 100%; padding: 8px 10px 8px 34px; border-radius: 9px;
  border: 1px solid var(--border); background: var(--surface-2); color: var(--text);
  font-size: 13.5px; font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.sidebar-suche input:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(10,132,255,0.28);
}
.sidebar-suche input::placeholder { color: var(--text-muted); }

.sidebar-nav { display: flex; flex-direction: column; gap: 2px; }
.sidebar-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
  color: var(--text-muted); margin: 20px 0 8px; padding-left: 10px;
}
.sidebar-nav .sidebar-label:first-child { margin-top: 2px; }
.sidebar-link {
  display: flex; align-items: center; gap: 11px;
  padding: 9px 10px 9px 9px; margin: 0 -2px;
  border-left: 3px solid transparent; border-radius: 0 10px 10px 0;
  color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.sidebar-link svg { width: 17px; height: 17px; flex-shrink: 0; }
.sidebar-link:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.sidebar-link.active { border-left-color: var(--accent); background: rgba(10,132,255,0.1); color: var(--text); }

.sidebar-footer {
  margin-top: auto; display: flex; align-items: center; gap: 10px;
  padding: 16px 9px 4px; border-top: 1px solid var(--border);
}
.sidebar-user-info { min-width: 0; flex: 1; }
.sidebar-user-name { font-size: 13.5px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-user-role { font-size: 11.5px; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-logout {
  color: var(--text-muted); display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  transition: background .15s ease, color .15s ease;
}
.sidebar-logout svg { width: 16px; height: 16px; }
.sidebar-logout:hover { background: rgba(255,69,58,0.12); color: var(--danger); }

.main { flex: 1; min-width: 0; padding: 56px 64px; }
.main-center { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 32px; }
.page { max-width: 900px; margin: 0 auto; width: 100%; }

@media (max-width: 900px) {
  .main { padding: 40px 32px; }
}
@media (max-width: 760px) {
  .app-shell { flex-direction: column; }
  .sidebar {
    position: static; width: 100%; height: auto; flex-direction: row;
    align-items: center; padding: 10px 14px; gap: 10px;
  }
  .sidebar-brand { display: none; }
  .sidebar-suche { display: none; }
  .sidebar-nav {
    flex: 1; flex-direction: row; gap: 2px; overflow-x: auto;
    scrollbar-width: none;
  }
  .sidebar-nav::-webkit-scrollbar { display: none; }
  .sidebar-label { display: none; }
  .sidebar-link { border-left: none; border-radius: 8px; white-space: nowrap; padding: 8px 10px; }
  .sidebar-link.active { background: rgba(10,132,255,0.14); }
  .sidebar-link span { display: none; }
  .sidebar-footer { margin-top: 0; border-top: none; border-left: 1px solid var(--border); padding: 0 0 0 12px; flex-shrink: 0; }
  .sidebar-user-info { display: none; }
  .main { padding: 28px 20px; }
}

/* Avatar */
.avatar {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(160deg, var(--accent), #5e5ce6);
  color: white; font-size: 12px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  cursor: default;
}
.avatar-sm { width: 26px; height: 26px; font-size: 11px; }

/* ---------- Dashboard hero + stats ---------- */
.dashboard-hero { margin-bottom: 30px; }
.dashboard-hero .editorial-heading { font-size: 30px; margin-bottom: 5px; }
.dashboard-datum { color: var(--text-secondary); font-size: 13.5px; margin: 0; }

.stats-row { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; margin-bottom: 40px; }
.stat-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 20px 22px; box-shadow: 0 1px 2px rgba(0,0,0,.35), 0 12px 32px rgba(0,0,0,.22);
  transition: transform .15s ease, box-shadow .15s ease;
}
.stat-card:hover { transform: translateY(-1px); box-shadow: 0 1px 2px rgba(0,0,0,.4), 0 16px 36px rgba(0,0,0,.28); }
.stat-label { font-size: 12.5px; color: var(--text-secondary); margin: 0 0 8px; }
.stat-value { font-size: 28px; font-weight: 600; letter-spacing: -0.01em; margin: 0; }
.stat-value-negativ { color: var(--danger); }
@media (max-width: 900px) { .stats-row { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 480px) { .stats-row { grid-template-columns: 1fr; } }

.page-subheading {
  font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600;
  color: var(--text-secondary); margin: 0 0 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--text); text-decoration: none; font-size: 13.5px; font-weight: 500;
  cursor: pointer; transition: background .15s ease, border-color .15s ease, transform .1s ease;
}
.btn:hover { background: var(--surface-hover); border-color: var(--border-strong); }
.btn:active { transform: scale(0.97); }
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-primary { background: var(--accent); color: white; border-color: var(--accent); box-shadow: 0 1px 3px rgba(10,132,255,0.35); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-small { padding: 6px 11px; font-size: 12.5px; }
.btn-ghost { background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,0.06); }
.btn-danger { color: var(--danger); border-color: rgba(255,69,58,0.35); }
.btn-danger:hover { background: rgba(255,69,58,0.14); border-color: rgba(255,69,58,0.5); }

.detail-aktionen { display: flex; gap: 8px; align-items: center; }
.loeschen-formular { margin-top: 18px; }

.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text-secondary); text-decoration: none; font-size: 13.5px;
  margin-bottom: 20px; transition: color .15s ease, transform .15s ease;
}
.back-link svg { width: 14px; height: 14px; }
.back-link:hover { color: var(--text); transform: translateX(-2px); }

/* ---------- Dashboard sections & lists ---------- */
.bereich-section { margin-bottom: 30px; }
.bereich-section h2 {
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 12px;
  font-weight: 600; color: var(--text-secondary); margin: 0 0 10px; padding-left: 4px;
  display: flex; align-items: center;
}
.bereich-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px; margin-left: 7px;
  border-radius: 999px; background: var(--surface-2); color: var(--text-secondary);
  font-size: 11px; font-weight: 600; text-transform: none; letter-spacing: 0;
}
.liste {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--surface);
  box-shadow: 0 1px 2px rgba(0,0,0,.3), 0 10px 28px rgba(0,0,0,.18);
}
.liste-zeile {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 20px; text-decoration: none; color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background .12s ease;
}
.liste-zeile:last-child { border-bottom: none; }
.liste-zeile:hover { background: var(--surface-hover); }
.liste-zeile::after {
  content: "›"; color: var(--text-muted); font-size: 19px; line-height: 1;
  transition: color .15s ease, transform .15s ease; flex-shrink: 0;
}
.liste-zeile:hover::after { color: var(--text-secondary); transform: translateX(2px); }
.liste-zeile-haupt { flex: 1; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.liste-titel { font-size: 14.5px; font-weight: 500; }
.liste-meta { font-size: 12.5px; color: var(--text-secondary); }

.such-zeile { align-items: flex-start; padding: 16px 20px; }
.such-zeile::after { margin-top: 2px; }
.such-snippet {
  font-size: 13px; color: var(--text-secondary); margin: 8px 0 0;
  line-height: 1.55; max-width: 640px;
}
.such-snippet mark {
  background: rgba(255,159,10,0.25); color: var(--text);
  border-radius: 3px; padding: 0 2px; font-weight: 500;
}
.leer {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 64px 0; color: var(--text-muted); text-align: center;
}
.leer svg { width: 34px; height: 34px; opacity: .5; }
.leer p { margin: 0; font-size: 14px; }

.badge { font-size: 11.5px; font-weight: 600; padding: 4px 11px; border-radius: 999px; white-space: nowrap; letter-spacing: 0.01em; }
.badge-offen { background: var(--warning-bg); color: var(--warning-text); }
.badge-entschieden { background: var(--success-bg); color: var(--success-text); }
.badge-entwurf { background: rgba(142,142,147,0.18); color: var(--text-secondary); }
.badge-prioritaet-niedrig { background: rgba(142,142,147,0.18); color: var(--text-secondary); }
.badge-prioritaet-mittel { background: rgba(10,132,255,0.14); color: var(--accent); }
.badge-prioritaet-hoch { background: rgba(255,69,58,0.15); color: var(--danger); }
.badge-ueberfaellig { background: rgba(255,69,58,0.15); color: var(--danger); }
.badge-gruppe { display: flex; gap: 8px; flex-wrap: wrap; flex-shrink: 0; }

/* ---------- Forms ---------- */
.formular { display: flex; flex-direction: column; gap: 6px; max-width: 640px; }
.formular-karte {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 36px; max-width: 720px;
  box-shadow: 0 1px 2px rgba(0,0,0,.3), 0 12px 32px rgba(0,0,0,.2);
}
.formular-karte h1 { margin-bottom: 4px; }
.formular label {
  font-size: 12.5px; font-weight: 500; color: var(--text-secondary);
  margin-top: 16px; text-transform: uppercase; letter-spacing: 0.03em;
}
.formular input[type=text], .formular input[type=email], .formular select, .formular textarea {
  padding: 10px 12px; border: 1px solid var(--border); border-radius: 10px; font-size: 14px;
  font-family: inherit; background: var(--surface-2); color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.formular input:focus, .formular select:focus, .formular textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(10,132,255,0.28);
}
.formular textarea { resize: vertical; font-family: "SF Mono", Menlo, monospace; font-size: 13.5px; }
.formular button[type=submit] { margin-top: 22px; align-self: flex-start; }
.formular-aktionen { display: flex; gap: 10px; margin-top: 22px; }
.formular-reihe { display: flex; gap: 16px; }
.formular-reihe > div { flex: 1; display: flex; flex-direction: column; }
@media (max-width: 560px) { .formular-reihe { flex-direction: column; gap: 0; } }
.hinweis { font-size: 12.5px; color: var(--text-muted); margin: 2px 0 10px; }

.option-zeile { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.option-zeile .option-input { flex: 1; margin-bottom: 0; }
.option-entfernen {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px;
  border: 1px solid var(--border); background: var(--surface-2);
  color: var(--text-secondary); font-size: 17px; line-height: 1; cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.option-entfernen:hover { background: rgba(255,69,58,0.14); color: var(--danger); border-color: rgba(255,69,58,0.4); }

.checkbox-zeile, .radio-zeile {
  display: flex; align-items: center; gap: 9px; font-size: 14px;
  color: var(--text); text-transform: none; font-weight: 400;
  margin-top: 8px; padding: 8px 10px; border-radius: 8px;
}
.checkbox-zeile:hover, .radio-zeile:hover { background: rgba(255,255,255,0.04); }
.formular input[type=checkbox], .formular input[type=radio] { accent-color: var(--accent); width: 16px; height: 16px; }

/* ---------- Detail views ---------- */
.detail {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px 38px;
  box-shadow: 0 1px 2px rgba(0,0,0,.3), 0 14px 36px rgba(0,0,0,.22);
}
.detail-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; gap: 16px; }
.detail-heading { display: flex; align-items: flex-start; gap: 14px; min-width: 0; }
.detail-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: var(--surface-2); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.detail-icon svg { width: 20px; height: 20px; }
.detail-heading .editorial-heading { font-size: 24px; }
.detail-meta { font-size: 12.5px; color: var(--text-secondary); margin: 0 0 6px; }
.detail-divider { border: none; border-top: 1px solid var(--border); margin: 26px 0; }
.markdown-inhalt { margin-top: 22px; line-height: 1.75; color: var(--text); font-size: 15px; }
.markdown-body h1, .markdown-body h2, .markdown-body h3 { margin-top: 22px; }
.markdown-body p { margin: 12px 0; color: #e5e5e7; }
.markdown-body a { color: var(--accent); }
.markdown-body code { background: rgba(255,255,255,0.08); padding: 2px 6px; border-radius: 5px; font-size: 13px; }
.markdown-body pre { background: #0d0d0e; border: 1px solid var(--border); border-radius: 10px; padding: 14px; overflow-x: auto; }
.markdown-body blockquote { border-left: 3px solid var(--border-strong); margin: 14px 0; padding: 4px 16px; color: var(--text-secondary); }
.markdown-body ul, .markdown-body ol { padding-left: 22px; }

.markdown-editor { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 6px; }
.markdown-editor textarea { min-height: 340px; }
.markdown-vorschau {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 16px; overflow-y: auto; min-height: 340px; font-size: 14px; line-height: 1.65;
}
.markdown-vorschau .vorschau-leer, .vorschau-leer { color: var(--text-muted); font-style: italic; margin: 0; }
@media (max-width: 720px) { .markdown-editor { grid-template-columns: 1fr; } .markdown-editor textarea, .markdown-vorschau { min-height: 220px; } }

.optionen-liste-anzeige { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; margin: 12px 0; }
.optionen-liste-anzeige li {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 10px; padding: 11px 15px; font-size: 14px;
}
.optionen-liste-anzeige li.gewaehlt {
  border-color: var(--success-text); background: var(--success-bg); color: var(--success-text); font-weight: 600;
}
.entscheidung-box {
  margin-top: 18px; padding: 15px 18px; background: var(--surface-2);
  border-radius: var(--radius); border: 1px solid var(--border); font-size: 14px;
}
.entscheidung-box p { margin: 4px 0; }
.entscheidung-eigen {
  margin: 12px 0; padding: 15px 18px; border-radius: var(--radius);
  background: rgba(10,132,255,0.1); border: 1px solid rgba(10,132,255,0.3);
}
.entscheidung-eigen-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); font-weight: 600; margin: 0 0 6px; }
.entscheidung-eigen p:last-child { margin: 0; font-size: 14px; }
.entscheidung-abgelehnt { color: var(--danger); font-size: 14px; margin: 12px 0; }

/* Budgets */
.budget-balken {
  width: 100%; max-width: 280px; height: 6px; border-radius: 999px;
  background: var(--surface-2); margin-top: 8px; overflow: hidden;
}
.budget-balken-fuellung {
  height: 100%; border-radius: 999px; background: var(--accent);
  transition: width .2s ease;
}
.budget-balken-warnung { background: var(--warning-text); }
.budget-balken-voll { background: var(--danger); }

.budget-uebrig {
  font-size: 13.5px; font-weight: 600; color: var(--success-text);
  white-space: nowrap; flex-shrink: 0;
}
.budget-uebrig-negativ { color: var(--danger); }

.budget-zeile { align-items: center; }
.ausgabe-zeile { align-items: flex-start; }
.ausgabe-zeile::after { display: none; }
.ausgabe-aktionen { display: flex; gap: 8px; flex-shrink: 0; }

.kommentar-liste { display: flex; flex-direction: column; gap: 16px; margin: 12px 0 24px; }
.kommentar-item { display: flex; gap: 12px; align-items: flex-start; }
.kommentar-inhalt { flex: 1; min-width: 0; }
.kommentar-meta { font-size: 12px; color: var(--text-secondary); margin: 0 0 3px; }
.kommentar-text { font-size: 14px; margin: 0; white-space: pre-wrap; }
.kommentar-formular { max-width: none; }
.kommentar-formular textarea { font-family: inherit; }

.entscheidung-formular-wrapper {
  margin-top: 10px; padding: 22px 24px; background: var(--surface-2);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.entscheidung-formular-wrapper .formular { max-width: none; }

/* ---------- Tables ---------- */
.detail-header.list-header { margin-bottom: 22px; }
.tabelle {
  width: 100%; border-collapse: collapse; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,.3), 0 12px 30px rgba(0,0,0,.18);
}
.tabelle th, .tabelle td { padding: 13px 18px; text-align: left; font-size: 13.5px; border-bottom: 1px solid var(--border); }
.tabelle th { color: var(--text-secondary); font-weight: 600; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.04em; background: var(--surface-2); }
.tabelle tr:last-child td { border-bottom: none; }
.tabelle tbody tr:hover { background: var(--surface-hover); }
.tabelle-aktionen { display: flex; gap: 14px; }
.tabelle-aktionen a { color: var(--accent); text-decoration: none; font-weight: 500; }
.link-button { background: none; border: none; color: var(--danger); cursor: pointer; padding: 0; font-size: 13.5px; font-weight: 500; }
.link-button:hover { text-decoration: underline; }

.user-row-name { display: flex; align-items: center; gap: 10px; }
.rolle-pill {
  display: inline-block; font-size: 12px; font-weight: 500; padding: 3px 10px;
  border-radius: 999px; background: var(--surface-2); color: var(--text-secondary);
}
.rolle-pill.rolle-chef { background: rgba(10,132,255,0.14); color: var(--accent); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; margin-right: 7px; }
.status-dot-aktiv { background: var(--success-text); }
.status-dot-gesperrt { background: var(--text-muted); }

/* ---------- Login ---------- */
.login-box {
  max-width: 360px; width: 100%; margin: 0 auto; text-align: center;
  padding: 44px 36px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 22px; box-shadow: 0 1px 2px rgba(0,0,0,.35), 0 20px 48px rgba(0,0,0,.3);
}
.login-logo { height: 28px; width: auto; margin: 0 auto 24px; display: block; }
.login-box .editorial-heading { font-size: 22px; margin-bottom: 8px; }
.login-box p { color: var(--text-secondary); font-size: 13.5px; margin: 0 0 24px; }
.fehler { color: var(--danger) !important; font-size: 13px; margin-bottom: 16px !important; }
.fehler-banner {
  background: rgba(255,69,58,0.12); border: 1px solid rgba(255,69,58,0.32);
  color: #ff8a80; padding: 13px 16px; border-radius: var(--radius);
  font-size: 13.5px; margin-bottom: 20px;
}
.google-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 11px 18px; border-radius: 10px;
  background: #ffffff; color: #1f1f1f; text-decoration: none;
  font-size: 14px; font-weight: 500; transition: background .15s ease, transform .1s ease;
}
.google-btn:hover { background: #f1f1f1; }
.google-btn:active { transform: scale(0.98); }
