.dc-ag-suggest-wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
}

.dc-ag-suggest-dropdown {
	position: absolute;
	top: calc(100% + 3px);
	left: 0;
	right: 0;
	z-index: 99999;
	margin: 0;
	padding: 4px 0;
	list-style: none;
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	max-height: 360px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.dc-ag-suggest-dropdown[hidden] {
	display: none;
}

.dc-ag-suggest-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 10px 14px;
	cursor: pointer;
	transition: background 0.1s ease;
	border-bottom: 1px solid #f3f4f6;
}

.dc-ag-suggest-item:last-child {
	border-bottom: none;
}

.dc-ag-suggest-item:hover,
.dc-ag-suggest-item.is-active {
	background: #f0f4ff;
}

.dc-ag-suggest-title {
	flex: 1;
	font-size: 14px;
	font-weight: 500;
	color: #111827;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dc-ag-suggest-type {
	flex-shrink: 0;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #6b7280;
	background: #f3f4f6;
	border-radius: 4px;
	padding: 2px 6px;
	white-space: nowrap;
}

.dc-ag-suggest-item:hover .dc-ag-suggest-type,
.dc-ag-suggest-item.is-active .dc-ag-suggest-type {
	background: #dbeafe;
	color: #1d4ed8;
}
