body {
  margin: 0;
  font-family: Arial, sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom right, #a0e9ff, #fdfcbf); /* restore gradient */
}

.center {
  text-align: center;
}

h1 {
  font-size: 3em;
  margin-bottom: 0.2em;
}

p {
  margin-top: 0;
  font-size: 1.2em;
}

.search {
  margin-top: 2em;
}

input {
  padding: 0.8em;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 25px;
  font-size: 1em;
}

button {
  padding: 0.8em 1.5em;
  margin-left: 10px;
  border: none;
  border-radius: 25px;
  background-color: #ff6b6b; /* coral button like before */
  color: white;
  font-size: 1em;
  cursor: pointer;
}

button:hover {
  background-color: #ff4c4c;
}

