/* Shared theme tokens + optional toggle styles */

:root {
  /* Night defaults */
  --bg:#0b0c10;
  --card:#171a21;
  --text:#e6eaf2;
  --muted:#a5adbb;
  --accent:#5b7cfa;
  --card-border:rgba(255,255,255,.06);
  --search-bg:#111318;
  --search-border:rgba(255,255,255,.1);

  /* Map to shared topbar vars (if used) */
  --topbar-bg: var(--bg);
  --topbar-text: var(--text);
  --topbar-accent: var(--accent);
}

:root[data-theme="day"] {
  --bg:#f6f7fb;
  --card:#ffffff;
  --text:#0b0c10;
  --muted:#4b5565;
  --accent:#3b6efb;
  --card-border:rgba(0,0,0,.06);
  --search-bg:#eef1f6;
  --search-border:rgba(0,0,0,.12);

  --topbar-bg: var(--card);
  --topbar-text: var(--text);
  --topbar-accent: var(--accent);
}

/* Optional: floating theme toggle styles */
.theme-toggle {
  position:fixed; right:16px; bottom:16px; z-index:1000;
  width:44px; height:44px; border-radius:50%; border:1px solid var(--card-border);
  background:var(--card); color:var(--text);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 16px rgba(0,0,0,.25);
  cursor:pointer;
}
.theme-toggle:hover { transform: translateY(-1px); transition: transform .15s ease; }
.theme-toggle:focus-visible { outline:2px solid var(--accent); outline-offset:2px; }

