/* Segment Form Visibility and Interactivity Fixes */
#segment-form {
  display: none !important;
}

#segment-form.active {
  display: block !important;
}

/* Ensure form elements are always interactive when visible */
#segment-form.active input[type="checkbox"],
#segment-form.active input[type="radio"],
#segment-form.active label,
#segment-form.active .form-check-label,
#segment-form.active button,
#segment-form.active [type="submit"],
#segment-form.active [type="button"] {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
