/* Global class toggled on <html> when AN Chat Search UI is open */
html.ancs-chat-open .search-bar,
html.ancs-chat-open .search-form,
html.ancs-chat-open #searchform,
html.ancs-chat-open .search-submit,
html.ancs-chat-open .an-mobile-search-bar,
html.ancs-chat-open .agri-mobile-search,
html.ancs-chat-open .mobile-search-wrapper {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* Keep the optional mobile transition classes for non-global use */
.an-mobile-search-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.an-mobile-search-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
