<style>
.search-container {
  position: relative;
}

#search-input {
  display: none;
  padding-left: 30px;
  width: 200px;
  height: 30px;
  border-radius: 15px;
  border: 1px solid #ccc;
  font-size: 16px;
}

#search-button {
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

#search-button img {
  width: 20px;
  height: 20px;
  margin-top: 5px;
  margin-left: 5px;
}

#search-input:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
</style>