/* idd-address-autocomplete — dropdown de suggestions d'adresse (API BAN).
   Posé en position: fixed, au-dessus des modales/tiroirs (z élevé). */
.idd-addr-ac {
	position: fixed;
	z-index: 100000; /* au-dessus des panneaux/modales d'outils (~9500) */
	display: none;
	background: #fff;
	border: 1px solid rgba(29, 24, 25, .12);
	border-radius: 12px;
	box-shadow: 0 14px 36px -10px rgba(29, 24, 25, .26);
	overflow: hidden;
	font-family: inherit;
}
.idd-addr-ac.is-open { display: block; }

.idd-addr-ac__list {
	list-style: none;
	margin: 0;
	padding: 6px;
	max-height: 288px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.idd-addr-ac__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 10px;
	border-radius: 9px;
	cursor: pointer;
	color: #1D1819;
}
.idd-addr-ac__item.is-active,
.idd-addr-ac__item:hover {
	background: rgba(181, 99, 122, .10);
}

.idd-addr-ac__pin {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #b5637a;
}

.idd-addr-ac__txt {
	display: flex;
	flex-direction: column;
	min-width: 0;
	line-height: 1.25;
}
.idd-addr-ac__main {
	font-weight: 600;
	font-size: .9rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.idd-addr-ac__sub {
	font-size: .78rem;
	color: #6E5A60;
}
