﻿.suggestions-dropdown {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    max-height: 280px;
    overflow-y: auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    display: none;
    width: 100%;
    margin: 0 auto;
}

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

.suggestion-item {
    padding: 14px 18px;
    cursor: pointer;
    border-bottom: 1px solid #f7fafc;
    transition: all 0.15s ease;
    display: flex;
    flex-direction: column;
}

    .suggestion-item:hover,
    .suggestion-item.highlighted {
        background-color: #ebf8ff;
        border-left: 3px solid #4299e1;
    }

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

.suggestion-text {
    font-weight: 400;
    color: #2d3748;
    line-height: 1.4;
}

.suggestion-description {
    font-size: 12px;
    color: #718096;
    margin-top: 2px;
}

.error-message {
    background: #fed7d7;
    color: #c53030;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 8px;
    display: none;
}

.address-input-container {
    position: relative;
}