.agdas-ac-wrap {
	position: relative;
}

.agdas-ac-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 99999;
	background: #fff;
	border: 1px solid #ddd;
	border-top: none;
	border-radius: 0 0 6px 6px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
	max-height: 400px;
	overflow-y: auto;
	width: 100%;
	box-sizing: border-box;
}

.agdas-ac-item {
	padding: 10px 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #333;
	line-height: 1.4;
	border-bottom: 1px solid #f0f0f0;
}

.agdas-ac-item:last-child {
	border-bottom: none;
}

.agdas-ac-item:hover,
.agdas-ac-item.agdas-ac-active {
	background: #f5f5f5;
}

.agdas-ac-separator {
	height: 1px;
	background: #e0e0e0;
	margin: 4px 14px;
}

.agdas-ac-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	opacity: .4;
	z-index: 1;
}

.agdas-ac-spinner {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	border: 2px solid #ddd;
	border-top-color: #999;
	border-radius: 50%;
	animation: agdas-spin .6s linear infinite;
	z-index: 1;
	display: none;
	pointer-events: none;
}

.agdas-ac-loading .agdas-sc-icon,
.agdas-ac-loading .agdas-ac-spinner-target {
	display: none !important;
}

.agdas-ac-loading .agdas-ac-spinner {
	display: block;
}

@keyframes agdas-spin {
	to { transform: translateY(-50%) rotate(360deg); }
}
