
#searchInput {
  width: 100%;
  max-width: 400px;
  padding: 0.5rem;
  font-size: 1rem;
  margin: 1rem 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#searchResults {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

#searchResults li {
  background: #f5f5f5;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  border-left: 4px solid #0077cc;
  transition: background 0.2s;
}

#searchResults li:hover {
  background: #e0f0ff;
}

#searchResults a {
  text-decoration: none;
  color: #0077cc;
  font-weight: bold;
}

#searchResults a:hover {
  text-decoration: underline;
}
