.search{
  width: 100%;
  height: 29px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color:rgb(223, 223, 223);
  border: 1px solid black;
  background-color: black;
}
.search1{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 25px;
  border-radius: 25px;
  border: 2px solid rgb(236, 145, 0);
}
.search2{
  width: 100%;
  height: 25px;
  border: none;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
  background-color: black;
  color: white;
  text-align: center;
}
.search3{
  width: 30px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-bottom-right-radius: 25px;
  border-top-right-radius: 25px;
  font-size: 25px;
  background-color: black;
  color: white;
}

button.search3{
    color: rgb(236, 145, 0);
}
.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;
    }