/* --- CUSTOM DROPDOWN STYLES --- */
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /* Position the dropdown right below the input */
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  border-left: 0px;
  border-right: 0px;
  /* Match input width */
  max-height: 200px;
  overflow-y: auto;
  background-color: white;
  display: none;
  /* Hidden by default */
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: var(--bg-dark);
  border-bottom: 1px solid #d4d4d4;
  border-left: 0px;
  border-right: 0px;
  font-size: 14px;
}

.autocomplete-items div:hover {
  background-color: #222831;
  color: #1dcd9f;
}

.autocomplete-items strong {
  color: #1dcd9f;
}
