/* Base layout and typography */
body {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #B0E0E6;   /* page background */
  font-size: 18px;
  min-height: 100vh;
  margin: 0;
}

/* Content container styling */
.container {
  background-color: white;   /* main content "card" */
  padding: 1rem;
}
@media (min-width: 768px) {
  .container {
    max-width: 730px;
    margin: 0 auto;
    padding: 2rem;
  }
}

/* Header and footer spacing */
.header,
.marketing,
.footer {
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .header,
  .marketing,
  .footer {
    padding-right: 0;
    padding-left: 0;
  }
}

.header {
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 30px;
}
.header h3 {
  margin: 0;
  line-height: 40px;
}

.footer {
  padding-top: 19px;
  color: #777;
  border-top: 1px solid #e5e5e5;
}

/* Typography spacing tweaks */
h1, h2 {
  margin-block-start: 0;
  margin-block-end: 0.75em;
}

/* PayPal image input cleanup */
form input[type="image"] {
  width: auto;
  max-width: none;
  border: none;
  outline: none;
  box-shadow: none;
}
form input[type="image"]:focus-visible {
  outline: 2px solid var(--primary-focus, #004080);
  outline-offset: 4px;
}

/* Reduce form margin */
form {
  margin-block-end: 1rem;
}

/* Optional: reset Pico styles on PayPal button (if using <button class="paypal">) */
button.paypal {
  padding: 0;
  background: none;
  border: none;
  width: auto;
}
button.paypal:focus {
  outline: none;
  box-shadow: none;
}

/* Optional: hide the tracking pixel if present */
form img[alt=""] {
  display: none;
}

