.autocomplete-container {
  position: relative;
}

#tradeList, #primeList  {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 0.375rem;
  margin-top: 0.25rem;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.autocomplete-item {
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.autocomplete-item:hover {
  background-color: #f8f9fa;
}

/* Custom scrollbar for the dropdown */
#tradeList::-webkit-scrollbar, #primeList::-webkit-scrollbar {
  width: 8px;
}

#tradeList::-webkit-scrollbar-track, #primeList::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

#tradeList::-webkit-scrollbar-thumb, #primeList::-webkit-scrollbar-thumb {
  background: #ff9900;
  border-radius: 4px;
}

#tradeList::-webkit-scrollbar-thumb:hover, #primeList::-webkit-scrollbar-thumb:hover {
  background: #ff8800;
} 