/**
 * Hides Intercept's React staff patron lookup (SelectUser / RegistrationLookup).
 *
 * Intercept's <SelectUser> renders a "Username or Card Number" field plus a
 * "Reset to My Account" button whenever utils.userIsStaff() is true, inside
 * its patron-facing React apps (Reserve a Room step 3, the room reservation
 * edit form, and the event_registration field_user widget).
 *
 * We don't use that lookup. Staff create and edit reservations through the
 * off-canvas PHP form, whose "Look up patron" modal is the supported path --
 * it is the one that knows about WISE staff authorization, so it can tell a
 * member of staff to sign in to WISE rather than reporting a patron who
 * exists as "not found". The React widget calls /api/customer/register, which
 * returns a bare [] for both outcomes and has nowhere to surface a sign-in
 * prompt; leaving it visible would give staff a second, worse lookup that
 * silently fails whenever they haven't authorized with WISE.
 *
 * Hidden rather than removed because it is upstream Intercept code compiled
 * into intercept_core/js/dist/interceptCommon.js -- changing the component
 * means patching Intercept and rebuilding its React bundle, for a widget this
 * product does not use. See .cursor/decisions/auth.md.
 *
 * The <span class="user-name"> sibling is deliberately left visible: it is the
 * read-only "Reserved for: <name>" display, not part of the lookup.
 */
.select-user > div {
  display: none;
}
