/* One shared three-state appearance control for marketing pages and the demo. */
.theme-toggle {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 550;
  line-height: 1;
  letter-spacing: normal;
}
.theme-ready .theme-toggle {
  display: inline-flex;
}
.theme-toggle:hover {
  background: var(--surface);
}
.theme-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.theme-icon {
  display: none;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
[data-theme-preference="light"] .theme-icon-light,
[data-theme-preference="dark"] .theme-icon-dark,
[data-theme-preference="system"] .theme-icon-system {
  display: block;
}
@media (max-width: 600px) {
  .theme-toggle {
    width: 44px;
    padding: 0;
  }
  .theme-toggle-label {
    display: none;
  }
}
