/* ===== PAGE DON – Styles spécifiques ===== */
:root {
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --gray: #f3f4f6;
  --text: #111827;
  --radius: 8px;
}

.dons-wrapper {
  max-width: 600px;
  margin: 4rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.dons-title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}
.dons-form label {
  display: block;
  margin: 1rem 0 0.25rem;
  font-weight: 600;
}
.dons-form input,
.dons-form select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  font-size: 1rem;
}
.dons-form button {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.75rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.dons-form button:hover {
  background: var(--primary-dark);
}
.dons-message {
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
}