.deck-editor-search-results {
    z-index: 9999; /* ensure above page content per UI/UX guideline */
    position: absolute; /* make sure it overlays */
    top: 100%;
    left: 0;
    right: 0;
    display: none; /* default hidden, shown by component */
    background: rgba(20, 20, 20, 0.98);
    color: #fff;
    border: 1px solid rgba(78, 205, 196, 0.35);
    border-radius: 8px;
    max-height: 320px;
    overflow-y: auto;
    padding: 4px 0;
}

.deck-editor-search-container { position: relative; }

/* Ensure parent panes do not clip the dropdown */
.card-selector-pane { overflow: visible !important; }
.card-selector-pane .deck-editor-search-container { overflow: visible !important; }

.deck-editor-search-result {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    cursor: pointer;
}

.deck-editor-search-result:hover {
    background: rgba(78,205,196,0.12);
}

.deck-editor-search-result-image {
    width: 40px;
    height: 56px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    margin-right: 10px;
}

.deck-editor-search-result-info {
    flex: 1;
    min-width: 0;
}

.deck-editor-search-batch-action {
    display: none;
}

.deck-editor-search-batch-action.is-visible {
    display: block;
}


