.search-suggestions {
    position: fixed;
    z-index: 1000;
    display: grid;
    gap: 3px;
    box-sizing: border-box;
    padding: 6px;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    color: var(--navy-950, #112d50);
    list-style: none;
    background: #ffffff;
    border: 1px solid var(--slate-300, #bfd0e3);
    border-radius: 14px;
    box-shadow: 0 16px 38px rgba(20, 57, 105, 0.18);
    overscroll-behavior: contain;
}

.search-suggestions[hidden] {
    display: none;
}

.search-suggestions-option {
    display: flex;
    align-items: center;
    min-height: 48px;
    gap: 12px;
    padding: 6px 10px;
    margin: 0;
    border-radius: 9px;
    cursor: pointer;
}

.search-suggestions-option:hover,
.search-suggestions-option[aria-selected="true"] {
    color: var(--navy-950, #112d50);
    background: #eaf3ff;
    outline: 2px solid transparent;
}

.search-suggestions-icon {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    overflow: hidden;
    color: var(--blue-600, #145fc8);
    font-size: 0.95rem;
    font-weight: 750;
    background: #e7eef8;
    border-radius: 10px;
    place-items: center;
}

.search-suggestions-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-suggestions-name {
    min-width: 0;
    overflow: hidden;
    font-size: 0.88rem;
    font-weight: 650;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-suggestions-status {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

@media (forced-colors: active) {
    .search-suggestions-option[aria-selected="true"] {
        outline-color: Highlight;
    }
}
