/**
 * Suggestions Dropdown Component
 * Autocomplete dropdown for form inputs
 */

.suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow-y: auto;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: 2px;
}

.suggestion-item {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.2s;
}

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

.suggestion-item:hover {
    background: #f8fafc;
}

.suggestion-item .suggestion-name {
    font-weight: 500;
    color: var(--text-primary);
}

.suggestion-item .suggestion-details {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 2px;
}
