body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f0fff0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 350px;
  text-align: center;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

#searchInput {
  width: 90%;
  padding: 10px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

#fruitList {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

#fruitList li {
  padding: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

#fruitList li:hover {
  background: #f5f5f5;
}

.highlight {
  background-color: yellow;
  font-weight: bold;
  padding: 2px 4px;
  border-radius: 4px;
}
