.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: 50%;
  box-shadow: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.theme-toggle__icon {
  font-size: 1.1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle[data-theme-state='dark'] .theme-toggle__icon--dark {
  display: inline-flex;
}

.theme-toggle[data-theme-state='dark'] .theme-toggle__icon--light {
  display: none;
}

.theme-toggle[data-theme-state='light'] .theme-toggle__icon--dark {
  display: none;
}

.theme-toggle[data-theme-state='light'] .theme-toggle__icon--light {
  display: inline-flex;
}

.theme-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.theme-toggle__sr-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
