.emoji-picker-container {
	width: 225px;
	height: 270px;
	max-height: 270px;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
}

.emoji-categories {
	max-width: 100%;
	border-bottom: 1px solid #e0e0e0;
	padding: 0.3rem 0;
	display: flex;
	flex-shrink: 0;
	justify-content: space-evenly;
}

.emoji-categories > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 25px;
	cursor: pointer;
	margin-right: 6px;
	transition: background 0.2s;
	padding: 2px;
}

.emoji-categories > span.active {
	background: #e0e0e0;
}

.emoji-categories > span.active svg {
	fill: #6f6c6c;
}

.emoji-categories > span:hover:not(.active) {
	background: #f5f5f5;
}

.emoji-categories > span > svg {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.emoji-search {
	padding: 0.3rem 0;
	border-bottom: 1px solid #e0e0e0;
	flex-shrink: 0;
}

.emoji-search input {
	width: 100%;
	padding: 0.4rem 0.5rem;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	font-size: 14px;
	outline: none;
	box-sizing: border-box;
}

.emoji-search input:focus {
	border-color: #4a90e2;
}

.emoji-list {
	overflow-x: hidden;
	overflow-y: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: flex-start;
	gap: 1px;
	padding: 0.3rem 0;
	flex: 1;
}

.emoji-list .emoji {
	width: 26px;
	height: 26px;
	font-size: 20px;
	text-align: center;
	display: inline-block;
	font-family: "Segoe UI Emoji", Segoe UI Symbol, Segoe UI, "Apple Color Emoji", Twemoji Mozilla, "Noto Color Emoji", "Android Emoji";
	line-height: 26px;
	border-radius: 8px;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
}

.emoji-list .emoji:hover {
	background: #f0f0f0;
}

.emoji-no-results {
	padding: 1rem;
	text-align: center;
	color: #999;
	font-size: 14px;
}