.autocomplete-container {
    position: relative;
    display: inline-block;
}

.address-input {
    width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #ccc;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    top: 61px;
    width: 344px;
}

.autocomplete-item {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}

.autocomplete-item:hover {
    background-color: #f1f1f1;
}

.autocomplete-item img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
    margin-top: 15px;
}

.autocomplete-item .address-parts {
    display: flex;
    flex-direction: column;
}

.fast-part {
    font-weight: 500;
}

.last-part {
    font-size: 0.9em;
    color: #999;
    margin-top: 4px;
}

/* WebKit browsers (Chrome, Safari) */
.autocomplete-items::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

.autocomplete-items::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background color of the scrollbar track */
}

.autocomplete-items::-webkit-scrollbar-thumb {
    background-color: #ccc; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Roundness of the scrollbar thumb */
    border: 3px solid #f1f1f1; /* Padding around the scrollbar thumb */
}

/* Firefox */
.autocomplete-items {
    scrollbar-width: thin; /* Width of the scrollbar */
    scrollbar-color: #ccc #f1f1f1; /* Color of the scrollbar thumb and track */
}