:root,
html[data-theme="dark"] {
  --theme-browser: #080807;
  --theme-control-bg: #171613;
  --theme-control-fg: #f4eee3;
  --theme-control-line: #3a3732;
  --theme-focus: #c8ff37;
}

html[data-theme="light"] {
  --theme-browser: #f4eee3;
  --theme-control-bg: #fffaf2;
  --theme-control-fg: #11100e;
  --theme-control-line: #bdb3a5;
  --theme-focus: #502c52;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-toggle {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  color: var(--theme-control-fg);
  background: var(--theme-control-bg);
  border: 1px solid var(--theme-control-line);
  border-radius: 50%;
  cursor: pointer;
}

.theme-toggle:hover { border-color: var(--theme-control-fg); }
.theme-toggle:focus-visible { outline: 3px solid var(--theme-focus); outline-offset: 3px; }
.theme-icon { font: 700 18px/1 Georgia, serif; }
html[data-theme="light"] .theme-icon-moon,
html[data-theme="dark"] .theme-icon-sun { display: none; }

@media (max-width: 680px) {
  .theme-toggle { width: 34px; height: 34px; }
}
