body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin-top: 20vh;
}

.search-container {
  position: relative;
  display: inline-block;
}

#searchInput {
  width: 300px;
  padding: 8px;
}

button {
  padding: 8px 12px;
  margin-left: 8px;
}

.suggestions {
  list-style: none;
  padding: 0;
  margin: 4px 0 0 0;
  width: 300px;
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  max-height: 150px;
  overflow-y: auto;
  z-index: 1000;
}

.suggestions li {
  padding: 6px 8px;
  cursor: pointer;
}

.suggestions li:hover {
  background-color: #f0f0f0;
}

.results {
  margin: 40px auto;
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.results div {
  border: 1px solid #ccc;
  padding: 10px;
  width: 220px;
}
