
#donation-form {
  max-width: 500px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
}

#donation-form h2 {
  text-align: center;
}

#donation-form label {
  display: block;
  margin-bottom: 10px;
}

#donation-form input[type="text"],
#donation-form input[type="email"],
#donation-form input[type="number"],
#donation-form select {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#donation-form input[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #0073aa;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#donation-form input[type="submit"]:hover {
  background-color: #005f8d;
}
