.suggestion-box {
	position: absolute;
	z-index: 1000;
	background: white;
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 5px;
	display: none;
}
.suggestion-item {
	display: flex;
	align-items: center;
	padding: 8px;
	cursor: pointer;
	border-bottom: 1px solid #eee;
	text-decoration: none;
	color: black;
}
.suggestion-item img {
	width: 50px;
	height: 50px;
	object-fit: cover;
	margin-right: 10px;
	border-radius: 5px;
}
.suggestion-item:hover {
	background: #f8f9fa;
}