#autocomplete-container {
    position: relative;
    width: 300px;
}
#address {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}
#suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}
.suggestion-item {
    padding: 8px;
    cursor: pointer;
}
.suggestion-item:hover {
    background: #f0f0f0;
}