/* ---------- Cross-app navigation strip ---------- */
/* Shared by every app under the NovelNumbers brand -- sits above the app's own header, letting
   people jump back to the hub or over to another tool without losing their place. */
.app-switcher{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  font-family:var(--font-mono); font-size:11.5px;
  padding:8px 0; border-bottom:1px solid var(--line-soft);
}
.app-switcher a{
  color:var(--ink-faint); text-decoration:none; letter-spacing:0.02em;
}
.app-switcher a:hover{ color:var(--ink-dim); text-decoration:underline; }
.app-switcher a.home{ color:var(--gold); font-weight:600; }
.app-switcher a.active{ color:var(--ink); font-weight:600; }
.app-switcher .sep{ color:var(--line); }
