.theme-toggle-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-dark .theme-toggle-bar {
  border-color: #495057;
}

.theme-toggle-button {
  border: unset;
  background-color: unset;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s ease-in-out;
}

.theme-toggle-button-icon {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  transition: transform 0.15s ease-in-out;
  transform-origin: center;
}

.theme-toggle-button:hover {
  opacity: 0.85;
}

.theme-toggle-button:focus,
.theme-toggle-button:focus-visible {
  outline: none;
}

.theme-toggle-button:hover .theme-toggle-button-icon,
.theme-toggle-button:focus .theme-toggle-button-icon,
.theme-toggle-button:focus-visible .theme-toggle-button-icon {
  transform: scale(1.18);
}

.theme-dark .theme-toggle-button:hover {
  opacity: 0.85;
}
