/* don.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f1ec;
  color: #333;
  font-size: 16px;
}

.don-container {
  max-width: 500px;
  margin: 30px auto;
  padding: 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #6b4f3b;
  text-align: center;
}

.description,
#infoPaiement {
  text-align: center;
  font-size: 1em;
  margin: 15px 0;
}

input[type="text"],
input[type="number"] {
  width: 80%;
  padding: 12px;
  margin: 10px 0;
  font-size: 1em;
  border-radius: 8px;
  border: 1px solid #ccc;
}


.montant-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
  justify-content: center;
  margin: 15px 0;
}

.montant-buttons button {
  padding: 10px;
  font-size: 0.85em;
  background-color: #8c6239;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}



.montant-buttons button:hover {
  background-color: #a97446;
}

#continueBtn {
  width: 90%;
  padding: 14px;
  font-size: 1.1em;
  background-color: #6b4f3b;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
}

#continueBtn:hover {
  background-color: #8c6239;
}

.message {
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  color: green;
}

@media (max-width: 500px) {
  h2 {
    font-size: 1.5em;
  }

  .montant-buttons button {
    flex: 1 0 100%;
  }
}
