
/* Styling for the autocomplete container */
 .autocomplete {
  margin-left: -7px;
  position: relative;
}

/* Styling for the search input field */
 .autocomplete input {
  
  width: 200px;
  height: 22px;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  transition: background-color 0.5s ease;
  display: inline-block;
  color: #283548;
}

a.autocompleete {
  position: absolute;
  top: 25px;
  right: 50px;
  cursor: pointer;
  text-decoration: none;
  color: #727272;
  font-size: 18px;
}

/* Styling autocomplete items list */
.autocomplete-items {
  width: 100%;
  height: 90%;
  border-radius: 10px;
  margin-top: 10px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(7, 7, 7, 0.12);
  z-index: 999;
}

/* Styling autocomplete items each */
.autocomplete-items div {
  background-color: #A0A7B6 ;
  padding: 3px 8px;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  border-bottom: 1px solid #fff;
}

/* Removing border of last search items  */
.autocomplete-items div:last-child {
  border-bottom: none;
}

/* Styling when an item is hovered */
.autocomplete-items div:hover {
  background-color: #2a2929;
}
.margin-auto-center {
  margin-inline: auto;
}