.insee-dropdown {
  position: absolute;
  z-index: 9999;
  /* top / left / width are set by JS via getBoundingClientRect() */
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 260px;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .12);
}
.insee-dropdown[hidden] { display: none; }

.insee-dropdown__item {
  padding: .55rem .75rem;
  cursor: pointer;
  line-height: 1.3;
}
.insee-dropdown__item strong { display: block; font-size: .95em; }
.insee-dropdown__item span   { display: block; font-size: .8em; color: #666; }
.insee-dropdown__item:hover,
.insee-dropdown__item.is-active { background: #f0f4ff; }

/* Read-only address field — visually distinct */
.insee-address-display-wrap input[readonly] {
  background: #f8f8f8;
  color: #555;
  cursor: default;
}
