body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f5f5f5;
}

header {
  background-color: #2e8b57;
  color: white;
  padding: 1rem;
  text-align: center;
}

nav {
  display: flex;
  justify-content: center;
  background-color: #3caa6b;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 1rem 1.5rem;
  display: block;
}

nav a:hover {
  background-color: #2e8b57;
}

.container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
  background: white;
  border-radius: 8px;
}

h1 {
  text-align: center;
}

#searchInput {
  width: 100%;
  padding: 0.8rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

ul#results {
  list-style: none;
  padding: 0;
}

ul#results li {
  padding: 0.5rem;
  border-bottom: 1px solid #eee;
}

ul#results li:last-child {
  border-bottom: none;
}
