/* Initial list styling */
#suggestions-list {
    display: none;
    width: 100%;
}

/* wrapper styling */
.search-autocomplete-wrapper {
    position: relative;
}

/* Ensure the list stays open when the helper class is active */
#suggestions-list.show-suggestions {
  display: block;
  max-height: 250px;
  overflow-y: auto;
}

/* Optional styling to match native Bootstrap dropdown item padding rules */
#suggestions-list li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
  text-decoration: none;
}

#suggestions-list li > a:hover {
  color: #262626;
  background-color: #f5f5f5;
}
