/* Tailwind via CDN, hier nur Platzhalter */

/* Simple toggle switch */
.hc-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #d1d5db; /* gray-300 */
  border-radius: 9999px;
  outline: none;
  cursor: pointer;
  transition: background .2s ease;
  display: inline-block;
  vertical-align: middle;
}
.hc-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 9999px;
  transition: left .2s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.hc-toggle:checked { background: #10b981; } /* emerald-500 */
.hc-toggle:checked::after { left: 20px; }
