
  /* ===== SWITCH ===== */
.switch-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 26px;
}

.slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

/* Estado activado */
.switch input:checked + .slider {
  background-color: #635BFF;
}

.switch input:checked + .slider::before {
  transform: translateX(20px);
}

/* Label del switch */
.switch-label {
  color: #333;
  font-weight: 500;
  cursor: pointer;
}
