body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #74ebd5, #acb6e5);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.container {
  background: #ffffffd9;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  text-align: center;
  width: 90%;
  max-width: 700px;
}

h1 {
  margin-bottom: 20px;
  color: #333;
}

.search-box {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

input[type="text"] {
  padding: 10px;
  font-size: 16px;
  width: 70%;
  border-radius: 8px;
  border: 1px solid #ccc;
}

button {
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: #007bff;
  color: white;
  transition: background 0.3s ease;
}

button:hover {
  background: #0056b3;
}

.quote {
  background: #f1f1f1;
  margin: 10px 0;
  padding: 15px 20px;
  border-radius: 10px;
  position: relative;
  font-size: 16px;
  text-align: left;
}

.copy-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  background: #28a745;
  border: none;
  padding: 5px 10px;
  color: white;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
}

.bottom-controls {
  margin-top: 20px;
}
