/**
 * Canada Post AddressComplete Dropdown Styles
 */

.cp-address-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 9999;
	max-height: 280px;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #ddd;
	border-top: none;
	border-radius: 0 0 4px 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cp-address-item {
	display: flex;
	align-items: center;
	padding: 10px 12px;
	cursor: pointer;
	border-bottom: 1px solid #f0f0f0;
	transition: background-color 0.15s ease;
	gap: 8px;
}

.cp-address-item:last-child {
	border-bottom: none;
}

.cp-address-item:hover,
.cp-address-item--active {
	background-color: #f7f7f7;
}

.cp-address-text {
	flex: 1;
	font-size: 14px;
	color: #333;
	line-height: 1.3;
}

.cp-address-text strong {
	font-weight: 600;
	color: #111;
}

.cp-address-desc {
	font-size: 12px;
	color: #888;
	white-space: nowrap;
	flex-shrink: 0;
}

.cp-address-expand {
	font-size: 10px;
	color: #aaa;
	flex-shrink: 0;
	margin-left: 4px;
}

.cp-address-loading {
	padding: 12px;
	text-align: center;
	font-size: 13px;
	color: #888;
}
