/* Wicket popup wrapper (positioned via JS). Keep it opaque and above page content. */
div.wicket-aa-container {
  background: #fff;
  border: 1px solid #dee2e6;
  border-top: none;                     /* nahtlos am Feld andocken */
  border-radius: 0 0 1rem 1rem;         /* unten rund */
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  z-index: 99999 !important;
  opacity: 1;
}

/* Safari/Bootstrap conflict guard:
 * if Wicket sets inline display:block but leaves [hidden], keep it visible.
 */
div.wicket-aa-container[hidden][style*="display: block"],
div.wicket-aa-container[hidden][style*="display:block"] {
  display: block !important;
}

/* Autocomplete-Dropdown */
div.wicket-aa {
  background: #fff;
  margin-top: 0;
  text-align: left;
  width: 100% !important;
  min-width: 100%;
}

/* Liste */
div.wicket-aa ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
}

/* Safari hardening: force readable list text and non-zero line box metrics. */
div.wicket-aa,
div.wicket-aa ul,
div.wicket-aa ul li {
  color: #212529 !important;
  -webkit-text-fill-color: #212529 !important;
  font-size: 1rem;
  line-height: 1.4;
}

div.wicket-aa ul li {
  display: block;
  padding: .375rem .75rem;
  cursor: pointer;
}

div.wicket-aa ul li:hover,
div.wicket-aa ul li.selected {
  background:#e7f1ff; /* sanftes Blau */
}

/* Nur die letzte Zeile unten abrunden */
div.wicket-aa ul li:last-child {
  border-radius:0 0 1rem 1rem;
}
