.zsh-contrast-switch-wrap {
  display: flex;
  align-items: center;
  gap: 1em;
}
.zsh-contrast-switch {
  position: relative;
  display: inline-block;
  border: none;
  outline: none;
  cursor: pointer;
  background: var(--switch-bg, #fff);
  width: 60px;
  height: 28px;
  border-radius: 14px;
  transition: background 0.2s;
}
.zsh-contrast-switch:focus, .zsh-contrast-switch:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}
.zsh-contrast-switch-ball {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 18px;
  height: 18px;
  background: var(--ball-color, #0a4a7c);
  border-radius: 50%;
  transition: left 0.2s, background 0.2s;
}
.zsh-contrast-switch-label {
  font-size: 1.2em;
  color: var(--label-color, #fff);
  user-select: none;
}
