.autocomplete-dropdown {
	width: 280px;
	max-width: calc(100vw - 32px);
	max-height: 220px;

	overflow-x: hidden;
	overflow-y: auto;

	padding: 4px;

	background: #fff;
	border: 1px solid #dfe3e8;
	border-radius: 6px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .12);

	z-index: 900;
}

.autocomplete-item {
	display: flex;
	align-items: center;
	gap: 9px;

	width: 100%;
	padding: 7px 8px;

	border: 0;
	border-radius: 4px;

	background: transparent;
	color: inherit;

	font-family: inherit;
	font-size: 14px;
	line-height: 1.2;
	text-align: left;

	cursor: pointer;
}

.autocomplete-item:hover,
.autocomplete-item.is-selected {
	background: rgba(66, 185, 146, .12);
}

.autocomplete-item.is-selected {
	box-shadow: inset 3px 0 0 #42b992;
}

.autocomplete-item:focus {
	outline: none;
}

.autocomplete-item:focus-visible {
	outline: 2px solid #42b992;
	outline-offset: -2px;
}

.autocomplete-avatar {
	width: 26px;
	height: 26px;
	flex: 0 0 26px;

	border-radius: 50%;
	object-fit: cover;
}

.autocomplete-username {
	min-width: 0;
	overflow: hidden;

	font-weight: 600;
	text-overflow: ellipsis;
	white-space: nowrap;
}