.tribute-container {
	position: absolute;
	top: 0;
	left: 0;
	height: auto;
	max-height: 300px;
	max-width: 300px;
	min-width: 300px;
	overflow: auto;
	display: block;
	z-index: 999999;
	border: 1px solid #c7c7c7;
	padding: 2px;
    border: 1px solid #E9ECEF;
    background:  #FFFFFF;
    box-shadow: 0px 2px 6px 0px rgba(2, 2, 2, 0.12);
}

.tribute-container ul {
	margin: 0;
	margin-top: 2px;
	padding: 0;
	list-style: none;
	background: rgb(255, 255, 255);
}

.tribute-container li {
	padding: 5px 5px;
	cursor: pointer;
}

.tribute-container li.highlight, .tribute-container li:hover {
	border-radius: 3px;
	background: var(--color-surface-hovered, #F3F5F7);
}

.tribute-container li.no-match {
	cursor: default;
}

.tribute-container .menu-highlighted {
	font-weight: bold;
}

.circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #5D6873;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: small;
    margin-right: 8px;
}

.initials {
	color: rgb(255, 255, 255); /* Dark gray text */
}

.tribute-container li span {
	overflow: hidden;
    color: #212529;
    font-variant-numeric: lining-nums tabular-nums;
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}