/* Autocomplete-Dropdown (Such-Suggest) für gn2/Search.
   Eigene, theme-unabhängige Farben (Text erbt sonst die u.U. weiße Header-Farbe). */

form.search { position: relative; }

.gn2-suggest {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 1051;
    margin-top: 2px;
    max-height: 70vh;
    overflow-y: auto;
    text-align: left;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 0 0 .25rem .25rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .12);
    padding: .25rem 0 0 0;
}

.gn2-suggest[hidden] {
    display: none;
}

.gn2-suggest .gn2-suggest-group {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #888;
    padding: .5rem .9rem .15rem;
}

.gn2-suggest .gn2-suggest-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .4rem .9rem;
    color: #333;
    text-decoration: none;
    white-space: normal;
}

.gn2-suggest .gn2-suggest-item:hover,
.gn2-suggest .gn2-suggest-item.gn2-active {
    background: #f2f4f6;
    color: #111;
    text-decoration: none;
}

.gn2-suggest .gn2-suggest-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex: 0 0 auto;
}

.gn2-suggest .gn2-suggest-ico {
    flex: 0 0 auto;
    width: 32px;
    text-align: center;
    color: #c0c0c0;
}

.gn2-suggest .gn2-suggest-all {
    justify-content: center;
    margin-top: .25rem;
    padding: .55rem .9rem;
    border-top: 1px solid #eee;
    font-weight: 600;
    color: #0a6ebd;
    background: #fff;
    box-shadow: 0 0 .5rem .5rem #fff;
    position: sticky;
    bottom: 0;
}

.gn2-suggest .gn2-suggest-all:hover,
.gn2-suggest .gn2-suggest-all.gn2-active {
    background: #f2f4f6;
    color: #084e85;
}
