/* IraqMDb isolated live-search delivery — launch hotfix 2026-09-08 */
.global-search { position: relative; overflow: visible !important; }
.ix-search-suggestions.is-open {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute;
    inset-inline: 0;
    top: calc(100% + 8px);
    z-index: 2147483000;
    max-height: min(520px, 70vh);
    overflow: auto;
    padding: 7px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    background: #071219;
    box-shadow: 0 18px 55px rgba(0,0,0,.55);
}
.ix-search-suggestions[hidden] { display: none !important; }
.ix-live-search__item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 60px;
    padding: 8px 10px;
    border-radius: 10px;
    color: #f4f7f8;
    text-decoration: none;
}
.ix-live-search__item:hover,
.ix-live-search__item.is-active { background: rgba(255,255,255,.09); }
.ix-live-search__thumb {
    width: 44px;
    height: 50px;
    flex: 0 0 44px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255,255,255,.07);
}
.ix-live-search__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ix-live-search__copy { min-width: 0; display: grid; gap: 3px; }
.ix-live-search__copy strong { color: #f4f7f8; font-size: 15px; }
.ix-live-search__copy small {
    overflow: hidden;
    color: #9fb2ba;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ix-live-search__message { padding: 14px; color: #b8c7cd; text-align: center; }
@media (max-width: 720px) {
    .ix-search-suggestions.is-open {
        position: fixed;
        inset-inline: 12px;
        top: 74px;
        max-height: 62vh;
    }
}
