/* Suburb autocomplete dropdown for the giveaway form. */
.bgf-ac {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 50;
	margin-top: 4px;
	max-height: 240px;
	overflow-y: auto;
	background: #141416;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
	display: none;
}

.bgf-ac.open {
	display: block;
}

.bgf-ac-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 0.6rem 1rem;
	cursor: pointer;
	color: #e5e7eb;
	font-size: 0.95rem;
}

.bgf-ac-item small {
	color: #6b7280;
}

.bgf-ac-item:hover,
.bgf-ac-item.active {
	background: #EA0B95;
	color: #fff;
}

.bgf-ac-item:hover small,
.bgf-ac-item.active small {
	color: rgba(255, 255, 255, 0.85);
}
