/* === Unified Donation Block (form + currency switcher) === */
.donation-block {
  max-width: 800px;        /* responsive width, capped at 800px */
  margin: 2rem auto;
  padding: 1rem 1rem;      /* roomy inner spacing (3rem 2rem) */
  background: #f9f9f9;     /* shared background */
  border-radius: 8px;      /* rounded corners */
  font-family: "Segoe UI", sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  min-height: 400px;       /* ensures background never looks too small */
}

/* Ensure both form and switcher inherit the block background */
.donation-block .cf7-donation-form,
.donation-block .wcml_currency_switcher {
  background: inherit;
  margin: 0;
  box-shadow: none;
}

/* === Wider donation form dropdowns === */
.donation-block .cf7-donation-form select {
  width: 350px;     /* wider width */
  height: 50px;     /* taller height */
  font-size: 1.1rem;
  padding: 0 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* === Custom amount field smaller size === */
.donation-block .cf7-donation-form input[name="custom-amount"] {
  width: 120px;     /* compact width */
  height: 40px;     /* smaller height */
  font-size: 0.95rem;
  padding: 0 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* === Captcha input field same size as custom amount === */
.donation-block .cf7-donation-form input[name="captcha-1"] {
  width: 120px;     /* same width */
  height: 40px;     /* same height */
  font-size: 0.95rem;
  padding: 0 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* === Submit button fixed size === */
.donation-block .cf7-donation-form input[type="submit"] {
  width: 200px;
  height: 44px;
  background-color: #17224a;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.donation-block .cf7-donation-form input[type="submit"]:hover {
  background-color: #17224a; /* #005f8d */
}