/* Keep filtered staff results visibly complete on touch devices.
   Earlier keyboard handling reduced this list to a single visible row. */
html.keyboard-open #visitorRecipients {
  max-height: min(320px, 38dvh);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
}

html.keyboard-open #visitorRecipients::-webkit-scrollbar {
  width: 8px;
}

html.keyboard-open #visitorRecipients::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.38);
  border-radius: 999px;
}

@media (max-width: 600px) {
  html.keyboard-open #visitorRecipients {
    max-height: min(220px, 30dvh);
  }
}
