/**
 * The dropdown is appended directly to <body> and positioned with `fixed`
 * top/left/width set inline by JS (see positionDropdown() in
 * checkout-address-autocomplete.js) — this lets it escape the Elementor
 * checkout widget's sticky-column / step-slide overflow and transform
 * contexts. Only visual styling lives here; position/top/left/width do not.
 */
.lmb-aac-suggestions {
	position: fixed;
	z-index: 999999;
	margin: 0;
	padding: 4px 0;
	list-style: none;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-shadow: 0 4px 14px rgba( 0, 0, 0, 0.12 );
	max-height: 280px;
	overflow-y: auto;
}

.lmb-aac-suggestions li {
	padding: 8px 12px;
	cursor: pointer;
	line-height: 1.4;
}

.lmb-aac-suggestions li.active,
.lmb-aac-suggestions li:hover {
	background: #f2f2f2;
}

.lmb-aac-main {
	display: block;
	font-size: 14px;
	color: #222;
}

.lmb-aac-secondary {
	display: block;
	font-size: 12px;
	color: #777;
}
