/* switches.css */

.gochill-checkbox-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #3f1f1f;
}

.gochill-checkbox-switch input[type="checkbox"] {
  width: 42px;
  height: 22px;
  appearance: none !important;
  background-color: #ccc !important;
  border-radius: 20px !important;
  position: relative !important;
  cursor: pointer !important;
  outline: none !important;
  transition: background-color 0.3s ease !important;
  border: none !important;
}

.gochill-checkbox-switch input[type="checkbox"]::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 3px;
  left: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.gochill-checkbox-switch input[type="checkbox"]:checked {
  background-color: #d56e2a !important;
}

.gochill-checkbox-switch input[type="checkbox"]:checked::before {
  transform: translateX(20px);
}
