.autocomplete-wrapper {
    position: relative;
}

.address-suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    display: none;
    max-height: 250px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.address-suggestions-dropdown.show {
    display: block;
}

.address-suggestion-item {
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    transition: background-color 0.15s ease;
}

.address-suggestion-item:last-child {
    border-bottom: none;
}

.address-suggestion-item:hover,
.address-suggestion-item.active {
    background-color: #f5f5f5;
}

.address-suggestion-item .suggestion-street {
    font-weight: 500;
    color: #333;
}

.address-suggestion-item .suggestion-city-state {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}
