.autocomplete {
  position: relative;
  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid ;
  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;
}

.autocomplete-items div {
  padding: 4px;
  cursor: pointer;
  background-color: #e0e0e0; 
  border-bottom: 1px solid ; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #c0c0c0; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: #a0a0a0 !important; 
  color: #ffffff; 
}

