/* SWITCH */
.mode-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: inherit;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #cbd5e1;
  transition: background-color .25s ease;
  border-radius: 26px;
}

.slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform .25s ease;
}

.switch input:checked + .slider {
  background-color: #38bdf8;
}

.switch input:checked + .slider::before {
  transform: translateX(24px);
}
