body {
  font-family: sans-serif;
  background: #f9f9f9;
  padding: 20px;
}

.container {
    background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  max-width: 800px;
  margin: auto;
  text-align: center;
}

textarea {
    border: 1px solid #ccc;
  background: #fff;
  width: 100%;
  height: 150px;
  margin: 10px 0;
  padding: 10px;
  font-size: 16px;
  resize: vertical;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

button {
  padding: 10px 15px;
  background: #4caf50;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background: #388e3c;
}
