/* Hide the Tutor Instructor option wrapper once JS marks it */
.register-type-btn.fsrr-hidden{
  display: none !important;
}

/* If the browser supports :has(), hide immediately to avoid a quick flash */
@supports selector(:has(*)) {
  .register-type-btn:has(input[name="user_type"][value="tutor_instructor"]) {
    display: none !important;
  }
}
