.autocomplete-container {
    position: relative;
    width: 250px;
}
.dropdown-list {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 999;
}
.dropdown-item {
    padding: 8px;
    cursor: pointer;
}
.dropdown-item:hover {
    background: #eee;
}
.input-row {
    display: flex;
}
.dropdown-arrow {
    padding: 5px;
    border: 1px solid #ccc;
    border-left: none;
    background: #f8f8f8;
    cursor: pointer;
    user-select: none;
}