#searchBar {
  position: relative;
}

#input {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.dropdown-list {
  color: black;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  max-height: 150px;
  overflow-y: auto;
  display: none;
  z-index: 999;
}

.dropdown-list li {
  padding: 10px 14px;
  cursor: pointer;
}

.dropdown-list li:hover {
  background-color: #f0f0f0;
