/* components/theme-toggle.css */
.toggle {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  transition:
    color 0.12s ease,
    border-color 0.12s ease,
    background 0.12s ease;
}
.toggle:hover {
  color: var(--ink);
  border-color: var(--muted);
  background: var(--surface-dim);
}
.toggle svg {
  display: block;
}
