body {
  font-family: Arial, sans-serif;
  background: #f4f6f8;
}

.container {
  width: 450px;
  margin: 40px auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h2 {
  text-align: center;
}

textarea {
  width: 100%;
  height: 80px;
  padding: 8px;
  margin: 10px 0;
  resize: none;
}

input, select {
  width: 100%;
  padding: 8px;
  margin: 6px 0;
}

.controls {
  display: flex;
  gap: 10px;
}

button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #0056b3;
}

.buttons {
  display: flex;
  gap: 10px;
}
