.listBox { max-height: 325px; overflow-y: auto; padding: var(--s-2); outline: none; } .listBoxItem { display: block; padding: var(--s-2) var(--s-3); border-radius: var(--radius-field); cursor: pointer; font-size: var(--font-sm); outline: none; color: inherit; text-decoration: none; transition: background-color 0.15s; &:hover, &:focus { background-color: var(--color-bg-high); } } .resultItem { display: flex; align-items: center; gap: var(--s-2); } .resultName { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .emptyState { padding: var(--s-8); text-align: center; color: var(--color-text-high); font-size: var(--font-sm); }