#autocomplete-list {
	position: absolute;
	border: 1px solid #ccc;
	border-top: none;
	max-height: 200px;
	overflow-y: auto;
	width: 250px;
	background: white;
	display: none;
	z-index: 1000;
	padding: 5px;
}
#autocomplete-list .item {
	background: #f9f9f9;
	margin: 5px 0;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.15);
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}
#autocomplete-list .item:hover {
	background: #eaeaea;
	transform: scale(1.02);
}
#autocomplete-list .title {
	font-weight: bold;
}
#autocomplete-list .subtitle {
	font-size: 0.9em;
	color: #555;
}