.shared-navigation-search-row {
    width: 100%;
    overflow: hidden;
    cursor: default;
    transition: background-color 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}

.shared-navigation-search-row:hover,
.shared-navigation-search-row:focus-within {
    background-color: var(--mud-palette-action-default-hover);
    border-color: var(--mud-palette-primary);
    box-shadow: var(--mud-elevation-4);
}

.shared-navigation-search-grid {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    width: 100%;
    min-height: 48px;
}

.shared-navigation-search-icon-cell,
.shared-navigation-search-dismiss-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 100%;
}

.shared-navigation-search-icon {
    color: var(--mud-palette-text-secondary);
}

.shared-navigation-search-link-cell {
    min-width: 0;
}

.shared-navigation-search-result {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 8px 4px;
    color: var(--mud-palette-text-primary);
    text-align: left;
    text-decoration: none;
}

.shared-navigation-search-result:hover,
.shared-navigation-search-result:focus {
    color: var(--mud-palette-text-primary);
    text-decoration: none;
}

.shared-navigation-search-name {
    display: block;
    overflow: hidden;
    color: inherit;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shared-navigation-search-row:hover .shared-navigation-search-icon,
.shared-navigation-search-row:focus-within .shared-navigation-search-icon {
    color: var(--mud-palette-primary);
}
