/** MUAADH SECTION — extracted in Phase 13 Wave 19 (2026-05-13). Single source. */


/* ============================================================================
 * APPENDED (Phase 13 Wave 19): rules pulled from muaadh-core.css
 * ============================================================================ */

.muaadh-section-search-wrapper { position: relative; }

.muaadh-section-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    background: var(--theme-card-bg);
    border: var(--chassis-border-thin) solid var(--theme-border);
    border-radius: 0 0 6px 6px;
    max-height: 240px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

.muaadh-section-search-item {
    padding: var(--space-2) var(--space-3);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-2);
    transition: background var(--chassis-duration-fast);
}

.muaadh-section-search-item:hover { background: var(--theme-overlay-light); }

.muaadh-section-search-label { font-size: var(--text-sm); }

.muaadh-section-search-code {
    font-size: var(--text-xs);
    color: var(--theme-text-secondary);
    font-family: monospace;
    white-space: nowrap;
}

.muaadh-section-search-empty:hover { background: none; }

