/* Portuguesices Smart Search */
.pss-dropdown {
	position: absolute;
	z-index: 9999;
	/* left/top/width são definidos inline pelo JS, alinhados ao campo */
	box-sizing: border-box;
	min-width: 220px;
	background: #fff;
	border: 1px solid #e3e3e3;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	overflow: hidden;
	font-size: 14px;
	line-height: 1.4;
	color: #222;
}

.pss-head {
	padding: 8px 12px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #888;
}

.pss-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pss-item .pss-txt {
	flex: 1 1 auto;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pss-item.pss-active,
.pss-item:hover {
	background: #f2f6ff;
}

.pss-mark {
	background: transparent;
	color: inherit;
	font-weight: 700;
	padding: 0;
}

.pss-empty {
	padding: 10px 12px;
	color: #999;
	font-style: italic;
}

@media (prefers-color-scheme: dark) {
	.pss-dropdown { background: #1f1f1f; border-color: #333; color: #eee; }
	.pss-head { color: #aaa; }
	.pss-item.pss-active, .pss-item:hover { background: #2a3550; }
}
