.search-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
}

/* Input laukelis su padding'ais, kad ikonėlės netrukdytų */
#searchInput {
  width: 100%;
  padding: 15px 50px 15px 55px; /* viršus, dešinė (x), apačia, kairė (lupa) */
  font-size: 16px;
  background-color: #fff;
  border: 2px solid #25262a;
  margin-bottom: 5px;
  border-radius: 500px;
  cursor: pointer;
  box-sizing: border-box;
}

/* Paieškos rezultatai po laukeliu */
#searchResults {
  position: absolute;
  top: 100%;
  left: 0;
  border: 1px solid #ccc;
  max-height: 400px;
  overflow-y: auto;
  background: #ffffff;
  margin-top: 2px;
  padding: 0;
  list-style: none;
  display: none;
  width: 100%;
  border-radius: 0 0 8px 8px;
  box-sizing: border-box;
}

#searchResults li {
    padding: 8px 10px;
    cursor: pointer;
    /* font-weight: bold; */
    color: #25262a;
    font-size: 16px;
}

#searchResults li:hover {
  background-color: #eee;
}

/* Lupa ikona */
.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #e67e22;
  pointer-events: none;
}
.ioyusadsadddlopas{
    width: 30px;
    height: 30px;
}
#clearBtn {
    position: absolute;
    right: 26px;
    top: 48%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 45px;
    cursor: pointer;
    color: #e67e22;
    display: none;
    padding: 0;
    line-height: 1;
}
