.annuaire-search-form { position: relative; width: 100%;justify-content: end;display: flex; gap: 20px; }
.annuaire-search-form input[name="s"] { width: 100%; padding: 10px 12px; box-sizing: border-box; }
.annuaire-search-form button { margin-top: 0; }

.annuaire-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9999;
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  background: #fff;
  border: 1px solid #ddd;
  max-height: 320px;
  overflow-y: auto;
  display: none;
      top: 50px;
}
.annuaire-suggestions li { padding: 8px 12px; cursor: pointer; border-bottom: 1px solid #f0f0f0; }
.annuaire-suggestions li:last-child { border-bottom: none; }
.annuaire-suggestions li:hover,
.annuaire-suggestions li.focused { background: #f5f5f5; outline: none; }
