/**
 * 02/10/25 : ajout mise en forme Suggestions
 * 09/10/25 : ajout mise en forme des marker-*
 */
body {
    background-color: AliceBlue;
}


/********************************************/
/* 		Suggestions (ie autocomplete) 		*/
.suggest-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.suggest-items > * {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
  display: block;
  padding: 4px;
}
.suggest-reverse {
  top: inherit;
  bottom: 100%;
}
.suggest-reverse > * {
  border-bottom-style: none;
  border-top: 1px solid #d4d4d4;
}
.suggest-items > *:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.suggest-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}

/********************************************/
/* 			Cartographie > Markers 			*/
.marker-icon { background-color: rgb(255 255 255 / 50%); }
.marker-site { color: blue; }
.marker-client { color: green; }
.marker-commande { color: green; }
