/*
 * TorrentPier – Bull-powered BitTorrent tracker engine
 *
 * Live search suggestions dropdown.
 * Selectors use `ul.search-suggest-menu` to outrank the theme's later-loaded
 * `.dropdown-menu` rules (same class-specificity would otherwise win by order).
 */
ul.search-suggest-menu {
    display: block;
    position: absolute; /* document-space coords (offset) — scrolls glued to the input, no parallax */
    max-height: 440px;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 2px 0 0;
    padding: 5px 0;
    z-index: 100000; /* above the theme header/navbar (also enforced inline from JS) */
}

ul.search-suggest-menu > li > a {
    display: block;
    padding: 5px 14px;
    white-space: normal;        /* allow long titles to wrap (theme forces nowrap) */
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
    cursor: pointer;
}

ul.search-suggest-menu > li.active > a,
ul.search-suggest-menu > li > a:hover,
ul.search-suggest-menu > li > a:focus {
    /* Theme accent tint, same pattern used across the project (color-mix) */
    background-color: color-mix(in srgb, var(--theme-accent-color, #428bca) 12%, var(--theme-color, #fff));
    color: inherit;
    text-decoration: none;
}

ul.search-suggest-menu b {
    color: #c0392b;
    font-weight: 700;
}
