body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #ffecd2, #fcb69f);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  width: 400px;
  text-align: center;
}

h1 {
  margin-bottom: 15px;
}

.search-box {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.search-box input {
  flex: 1;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.search-box button {
  padding: 8px 12px;
  border: none;
  background: #e67e22;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.search-box button:hover {
  background: #d35400;
}

.result-card {
  padding: 15px;
  border-radius: 10px;
  background: #f8f8f8;
  text-align: left;
}

.result-card h2 {
  margin-bottom: 10px;
  color: #2c3e50;
}
