.ac-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--card-bg);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px var(--shadow2);
    z-index: 200;
    overflow: hidden;
    display: none;
    min-width: 240px;
}

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

.ac-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background var(--transition);
}

.ac-item:hover,
.ac-item.active {
    background: var(--bg3);
}

.ac-item > i {
    font-size: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.ac-item-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.ac-item-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--txt);
}

.ac-item-meta {
    font-size: 11px;
    color: var(--txt2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
