.custom-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.toggle-switch {
  width: 50px;
  height: 25px;
  cursor: pointer;
}

.toggle-label {
  display: flex;
  gap: 1rem;
  font-weight: bold;
  font-size: 1rem;
}

.toggle-label .auto-label,
.toggle-label .manual-label {
  opacity: 0.4;
  transition: opacity 0.2s ease-in-out;
}

.toggle-switch:checked + .toggle-label .auto-label {
  opacity: 1;
}

.toggle-switch:not(:checked) + .toggle-label .manual-label {
  opacity: 1;
}

