.suggest-list {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: white;
	border: 1px solid #ddd;
	border-top: none;
	border-radius: 0 0 4px 4px;
	max-height: 200px;
	overflow-y: auto;
	z-index: 1000;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.suggest-item {
	padding: 10px;
	cursor: pointer;
	border-bottom: 1px solid #eee;
	transition: background-color 0.2s;
}

.suggest-item:last-child {
	border-bottom: none;
}

.suggest-item:hover,
.suggest-item.selected {
	background-color: #f5f5f5;
}

.suggest-item.highlighted {
	background-color: #4CAF50;
	color: white;
}

.suggest-no-results {
	padding: 10px;
	color: #999;
	font-style: italic;
	text-align: center;
}

.hidden {
	display: none;
}