.address-input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    background: #fff;
    text-align: left;
}

.suggestions-list li {
    padding: 8px;
    cursor: pointer;
    font-size: 14px;
}

.suggestions-list li:hover {
    background-color: #f1f1f1;
}
