#suggestions {
    display: none;
    position: absolute;
    border: 1px solid #ccc;
    background-color: #fff;
    max-height: 150px;
    overflow-y: auto;
    z-index: 9999;
    width: 200px;
  }
  #suggestions ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  #suggestions ul li {
    padding: 5px 10px;
    cursor: pointer;
  }
  #suggestions ul li:hover {
    background-color: #f0f0f0;
  }
  .individual-suggestion
  {
    cursor: pointer;
  }