/* ═══════════════════════════════════════════════════════════════════════════
   Unified Search Dropdown — shared across all search bars
   ═══════════════════════════════════════════════════════════════════════════ */

.unified-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    max-height: 360px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #d1d5db;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    font-size: 14px;
}

.unified-search-dropdown[hidden] {
    display: none;
}

/* Group labels */
.us-group-label {
    padding: 6px 12px 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    user-select: none;
}
.us-group-label:first-child {
    border-top: none;
}

/* Items */
.us-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.12s;
    flex-wrap: wrap;
}
.us-item:hover,
.us-item.active {
    background: #eff6ff;
}

.us-icon {
    flex-shrink: 0;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.us-text {
    flex: 1;
    font-weight: 500;
    color: #1f2937;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.us-type-badge {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}
.us-entity[data-entity-type="Person"] .us-type-badge {
    background: #dbeafe;
    color: #1e40af;
}
.us-entity[data-entity-type="Place"] .us-type-badge {
    background: #d1fae5;
    color: #065f46;
}
.us-entity[data-entity-type="Event"] .us-type-badge {
    background: #fef3c7;
    color: #92400e;
}

.us-key-verse {
    flex-basis: 100%;
    font-size: 11px;
    color: #6b7280;
    margin-left: 28px;
    margin-top: -2px;
}
.us-key-verse::before {
    content: '📜 ';
}

.us-desc {
    flex-basis: 100%;
    font-size: 11px;
    color: #9ca3af;
    margin-left: 28px;
    margin-top: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Dark mode ─────────────────────────────────────────────────────────── */
.dark-mode .unified-search-dropdown {
    background: var(--dm-surface, #1e293b);
    border-color: var(--dm-border, #334155);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.dark-mode .us-group-label {
    background: var(--dm-surface, #1e293b);
    border-color: var(--dm-border, #334155);
    color: var(--dm-text-muted, #94a3b8);
}

.dark-mode .us-item:hover,
.dark-mode .us-item.active {
    background: #1e3a5f;
}

.dark-mode .us-text {
    color: var(--dm-text, #e2e8f0);
}

.dark-mode .us-entity[data-entity-type="Person"] .us-type-badge {
    background: #1e3a5f;
    color: #93c5fd;
}
.dark-mode .us-entity[data-entity-type="Place"] .us-type-badge {
    background: #064e3b;
    color: #6ee7b7;
}
.dark-mode .us-entity[data-entity-type="Event"] .us-type-badge {
    background: #78350f;
    color: #fcd34d;
}

.dark-mode .us-key-verse {
    color: var(--dm-text-muted, #94a3b8);
}
.dark-mode .us-desc {
    color: var(--dm-text-muted, #64748b);
}

/* ── Responsive tweaks ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .unified-search-dropdown {
        max-height: 280px;
        font-size: 13px;
    }
    .us-item {
        padding: 10px 12px;
    }
}
