.hidden { display: none; }
    .result {
      padding: 10px;
      border: 1px solid #ccc;
      background: #f9f9f9;
      margin: 10px 0;
    }
    #suggestions {
      max-height: 100px;
      overflow-y: auto;
      margin-bottom: 10px;
    }
    .sugges{
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #0b0a0a;
    }
    .sugges2{
      width: 300px;
      height: 100%;
      background-color: #0b0a0a;
      color: white;
      /* border-radius: 25px; */
    }
    #suggestions div {
      padding: 5px;
      cursor: pointer;
    }
    #suggestions div:hover {
      background-color: black;
    }