.roc-typeahead {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.ds_site-search__form .roc-typeahead {
    flex: 1 1 auto;
}

.roc-typeahead__panel {
    display: none;
    position: absolute;
    inset-inline-start: 0;
    inset-inline-end: 0;
    top: calc(100% + 0.25rem);
    max-height: 20rem;
    overflow-y: auto;
    z-index: 5;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background-color: #fff;
}

.roc-typeahead--open .roc-typeahead__panel {
    display: block;
}

.roc-typeahead__group {
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.roc-typeahead__group:first-child {
    border-top: 0;
}

.roc-typeahead__group-label {
    margin: 0 0 0.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #343741;
}

.roc-typeahead__group-hint {
    margin: 0.5rem 0 0;
    font-size: 0.8rem;
    color: #6f777b;
}

.roc-typeahead__option {
    padding: 0.35rem 0;
    cursor: pointer;
    border-radius: 4px;
}

.roc-typeahead__option + .roc-typeahead__option {
    margin-top: 0.35rem;
}

.roc-typeahead__option[aria-selected="true"] {
    background-color: rgba(0, 85, 204, 0.12);
}

.roc-typeahead__option-label {
    display: block;
    font-weight: 600;
    color: #0b0c0c;
}

.roc-typeahead__option-meta {
    display: block;
    font-size: 0.85rem;
    color: #505a5f;
}

@media (prefers-reduced-motion: reduce) {
    .roc-typeahead__option {
        transition: none;
    }
}
