.search-input-wrapper {
    position: relative;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a2e;
    border: 1px solid #333;
    border-top: none;
    border-radius: 0 0 8px 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 320px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.autocomplete-dropdown li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #2a2a3e;
}

.autocomplete-dropdown li:hover,
.autocomplete-dropdown li.active {
    background: #2a2a4e;
}

.autocomplete-dropdown img {
    border-radius: 4px;
    flex-shrink: 0;
}

.autocomplete-dropdown mark {
    background: #4a90d9;
    color: #fff;
    padding: 0 2px;
    border-radius: 2px;
}
/*Publisher*/
.autocomplete-publisher {
    background: linear-gradient(135deg, #1e3a5f 0%, #1a1a2e 100%);
    border-left: 3px solid #4a90d9;
}

.autocomplete-icon-publisher {
    color: #4a90d9;
    flex-shrink: 0;
}

.autocomplete-label {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sh_fast.autocomplete-wrapper .autocomplete-dropdown {
    left: 15px;
    top: calc(100% - 5px);
    min-width: 390px;
}
.autocomplete-type {
    font-size: 10px;
    text-transform: uppercase;
    color: #4a90d9;
    letter-spacing: 0.5px;
    background: rgba(74, 144, 217, 0.2);
    padding: 2px 6px;
    border-radius: 3px;
    flex-shrink: 0;
}

.autocomplete-name {
    overflow: hidden;
    text-overflow: ellipsis;
}
.sh_fast.autocomplete-wrapper .autocomplete-dropdown {
    min-width: 300px;
    right: auto;
}
/* Scrollbar fix */
/* Nur das Dropdown: Chromium/Brave/Chrome/Edge/Opera */
.autocomplete-dropdown::-webkit-scrollbar {
    width: 6px;              /* Breite des Scrollbalkens */
}

.autocomplete-dropdown::-webkit-scrollbar-track {
    background: #141427;     /* Hintergrund der Leiste */
}

.autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: #4a90d9;     /* eigentlicher Balken */
    border-radius: 3px;
}

.autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
    background: #6aa4e3;
}
