/* Positioning wrapper so the dropdown anchors under the input */
.auac-wrapper {
	position: relative;
	width: 100%;
}

.auac-dropdown {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	z-index: 9999;
	margin: 0;
	padding: 6px 0;
	list-style: none;
	background: #ffffff;
	border: 1px solid #7A7A7A;
	border-radius: 13px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
	max-height: 240px;
	overflow-y: auto;
	font-family: "Inter", "Manrope", sans-serif;
}

.auac-item {
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 400;
	color: #333333;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.auac-item:hover,
.auac-item.auac-active {
	background: #FDEDE6; /* soft tint of your #E05D25 brand orange */
	color: #E05D25;
}

.auac-dropdown::-webkit-scrollbar {
	width: 6px;
}

.auac-dropdown::-webkit-scrollbar-thumb {
	background: #d9d9d9;
	border-radius: 4px;
}
