/* Force-hide the magnifying glass icon and its SVG in autoComplete.js */
.instant-menu-search-form .autoComplete_wrapper .autoComplete_icon,
.instant-menu-search-form .autoComplete_wrapper .autoComplete_icon svg {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
/* Hide the label/title for the search field */
.instant-menu-search-form label[for="edit-search"] {
  display: none !important;
}
/* Hide the search button in the instant menu form */
.instant-menu-search-form .form-actions {
  display: none !important;
}
/* Light gray placeholder text for search input */
.instant-menu-search-form .autoComplete_wrapper > input::placeholder {
  color: #bbb !important;
  opacity: 1 !important;
}
/* Override autoComplete.js input height with higher specificity */
.instant-menu-search-form .autoComplete_wrapper > input,
.instant-menu-search-form .autoComplete_wrapper > input:focus,
.instant-menu-search-form .autoComplete_wrapper > input:active,
.instant-menu-search-form .autoComplete_wrapper > input:hover {
  height: 3rem !important;
  width: 800px !important;
  padding: 6px !important;
  border-radius: 2px !important;
  border: 1px solid #bbb !important;
  aspect-ratio: 1.8/1 !important;
  box-sizing: border-box !important;
  color: #333 !important;
}

/* Hide the magnifying glass icon in autoComplete.js */
.instant-menu-search-form .autoComplete_wrapper .autoComplete_icon {
  display: none !important;
}
