/* Theme switcher panel — DEV ONLY. Delete with theme-switcher.js before handoff. */
#theme-switcher {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  width: 260px;
  max-height: 86vh;
  overflow: auto;
  background: #ffffff;
  color: #222;
  font-family: system-ui, sans-serif;
  font-size: 13px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  padding: 12px 14px;
}
#theme-switcher.hidden { display: none; }
#theme-switcher .ts-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
#theme-switcher .ts-head strong { font-size: 15px; }
#theme-switcher .ts-hint { font-size: 11px; color: #888; }
#theme-switcher h4 { margin: 12px 0 6px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: #999; }
#theme-switcher .ts-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin: 5px 0; }
#theme-switcher .ts-row span { flex: 0 0 auto; }
#theme-switcher input[type="color"] { width: 42px; height: 26px; padding: 0; border: 1px solid #ccc; border-radius: 4px; background: none; cursor: pointer; }
#theme-switcher input[type="text"] { flex: 1 1 auto; min-width: 0; padding: 5px 7px; border: 1px solid #ccc; border-radius: 4px; font: inherit; }
#theme-switcher .ts-actions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
#theme-switcher button { flex: 1 1 auto; padding: 7px 8px; border: 0; border-radius: 6px; background: #222; color: #fff; font: inherit; font-weight: 600; cursor: pointer; }
#theme-switcher button.ghost { background: #eee; color: #333; }
#theme-switcher button:hover { opacity: 0.9; }
#theme-switcher #ts-out { display: none; width: 100%; height: 150px; margin-top: 10px; font-family: ui-monospace, Menlo, monospace; font-size: 11px; border: 1px solid #ddd; border-radius: 6px; padding: 8px; resize: vertical; }
