/* Autocomplete-Dropdown */
div.wicket-aa {
  background:#fff;
  border:1px solid #dee2e6;
  border-top:none;                     /* nahtlos am Feld andocken */
  border-radius:0 0 1rem 1rem;         /* unten rund */

  margin-top:0;
  text-align:left;
  width:auto !important;
  min-width:100%;
  z-index:1000;
}

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

div.wicket-aa ul li {
  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;
}