
.autocomplete-container {
    position: relative;
    display: inline-block;
    width: 100%;
	user-select: none;
}

#autocomplete-list {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #232730;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 2000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}


#autocomplete-list li {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

#autocomplete-list li {
    padding: 8px 12px !important;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem !important;
    transition: all 0.2s ease;
}

#autocomplete-list li:last-child {
    border-bottom: none;
}

#autocomplete-list li:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding-left: 20px;
}

#autocomplete-list::-webkit-scrollbar {
    width: 6px;
}

#autocomplete-list::-webkit-scrollbar-track {
    background: transparent;
}

#autocomplete-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

#autocomplete-list li:nth-child(even) {
    background: #1e222b;
}

#autocomplete-list li:nth-child(odd) {
    background: #232730;
}

#autocomplete-list li:hover {
    background: rgba(16, 185, 129, 0.1) !important;
    color: #10b981 !important;
    padding-left: 20px;
}
