.theme-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--text, #e8eef8) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--text, #e8eef8) 12%, transparent);
}

.theme-switch button {
  width: 30px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted, #8b9bb4);
  cursor: pointer;
}

.theme-switch button:hover {
  color: var(--text, #e8eef8);
}

.theme-switch button[aria-pressed="true"] {
  background: color-mix(in srgb, var(--cyan, #22d3ee) 18%, transparent);
  color: var(--cyan, #22d3ee);
}

.theme-switch svg {
  display: block;
  width: 15px;
  height: 15px;
}
