body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.search-container {
  text-align: center;
  width: 100%;
  max-width: 600px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
#searchInput {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
#results {
  list-style: none;
  padding: 0;
}
#results li {
  padding: 10px;
  border-bottom: 1px solid #eee;
  text-align: left;
}
#results li a {
  text-decoration: none;
  color: #007bff;
}
#results li a:hover {
  text-decoration: underline;
}
