.search-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#search-input {
  padding: 10px;
  font-size: 16px;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
}

#search-button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
}

#search-results div {
  border-bottom: 1px solid #eee;
  margin-top: 10px;
  padding: 10px 0;
}
