/* Use the existing neutral palette and preserve selected/focus states. */
.base-editor-container .entity-item.entity-suggestion-pending {
    background: var(--background-color);
    border-color: var(--border-color, #d1d5db);
}
.base-editor-container .entity-item.entity-suggestion-pending.selected {
    border-color: var(--primary-color);
}
.entity-suggestion-pending .badge-new {
    display: none;
}
.entity-suggestion-pending .entity-name,
.entity-suggestion-link,
a.entity-link.entity-suggestion-link {
    color: var(--text-muted) !important;
}
.entity-name .entity-suggestion-link {
    color: inherit;
    font: inherit;
    text-decoration: none;
}
a.entity-suggestion-link:hover,
a.entity-suggestion-link:focus-visible {
    text-decoration: underline;
}
.entity-suggestion-status {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    margin-inline-start: .45rem;
    color: var(--text-muted);
    font-size: .75rem;
    font-weight: 400;
    white-space: nowrap;
}
