/* Autocomplete Dropdown Styles */
.autocomplete-dropdown {
    position: absolute;
    background: #1e293b;
    /* Dark Navy to match theme */
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    z-index: 1000;
    margin-top: 0.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.autocomplete-dropdown.hidden {
    display: none;
}

.suggestion-item {
    padding: 0.75rem 1rem;
    color: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

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

.suggestion-item:hover {
    background: var(--primary);
    color: white;
}
