.custom-autocomplete {
  position: relative;
  width: 100%;
}
.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  background: #181c1f;
  border: 1px solid #333;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  color: #00ff41;
  font-family: inherit;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.autocomplete-list .autocomplete-item {
  padding: 0.5em 1em;
  cursor: pointer;
  transition: background 0.2s;
}
.autocomplete-list .autocomplete-item:hover,
.autocomplete-list .autocomplete-item.active {
  background: #222e22;
  color: #fff;
}
.autocomplete-list .autocomplete-item.new {
  color: #FFD60A;
  font-style: italic;
}
