.autocomplete-wrapper {
	position: relative;
	width: 100%;
/*	font-family: sans-serif; */
}

.search-input {
/*	width: 100%;
	padding: 10px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box; */
}

.suggestions-panel {
	position: absolute;
	top: 74%;
	left: 0;
	right: 0;
	/*
	background: white;
	*/
	background: white !important; /* #c2c2c2; */
	color: white !important;
	border: 1px solid #ccc;
	border-top: none;
	border-radius: 0 0 4px 4px;
	max-height: 200px;
	overflow-y: auto;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	display: none; 
	z-index: 10;
	scrollbar-color: blue !important;
}

.suggestions-panel a {
	color: black;
}

.autocomplete-wrapper:has(input:not(:placeholder-shown)) .suggestions-panel {
	display: block;
}		

.search-wrapper:has(input:not(:placeholder-shown)) .suggestions-panel {
	display: block;
}	
.suggestion-item 
{
	padding: 10px;
	cursor: pointer;
	display: block;
	text-decoration: none;
	/* color: #333; */
	color: black;
}

.suggestion-item:hover {
	background-color: #f0f0f0;
}

/* Classe utilitária para esconder itens filtrados */
.is-hidden {
	display: none !important;
}
