


/* Address Autocomplete Styles */
.address-suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

.address-suggestion-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

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

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

.address-suggestion-item.loading {
    color: #666;
    font-style: italic;
    cursor: default;
}

.address-suggestion-item .main-text {
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.address-suggestion-item .secondary-text {
    font-size: 0.85em;
    color: #666;
}
