.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.search-container {
  position: relative;
  width: 100%;
}

.search-bar input {
  width: 100%;
  padding: 18px 50px 18px 15px;
  border-radius: 15px;
  border: 1px solid #f1f1f1;
  outline: none;
  font-size: 14px;
  background-color: #ffffff;
  box-sizing: border-box;
}

#searchButton {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

#searchButton img {
  width: 20px;
  height: 20px;
}