/* Styles pour le wrapper du champ de recherche et des suggestions */
.location-input-wrapper {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  margin-right: 10px;
}

/* Ajuster la position du conteneur de suggestions */
.location-input-wrapper .location-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 230px; /* Largeur fixe pour correspondre au champ de recherche */
  z-index: 1000;
}

/* S'assurer que le champ de recherche a la bonne largeur */
.location-input-wrapper .search-location-input {
  width: 230px;
  box-sizing: border-box;
}
