/* Hide on mobile (less than 768px) */
/* Hide on tablet (768px – 1024px) */
/* Hide on desktop (greater than 1024px) */
/* Base style for all GiveWP buttons */
.give-btn {
  background-color: #f39c2c;
  /* light/medium orange (you can change) */
  color: #ffffff;
  font-weight: bold;
  font-size: 1.5em;
  /* white text */
  border: none;
  /* or define border if you want */
  border-radius: 10px;
  padding: 0.4em 0.9em;
  /* adjust as you like */
  cursor: pointer;
  transition: background-color 0.3s ease;
}
/* Hover state */
.give-btn:hover,
.give-btn:focus {
  background-color: #ED8F0C;
  /* darker orange for hover */
  color: #ffffff;
}
/* If any GiveWP button is actually an input[type="submit"] with class give-btn */
input.give-btn[type="submit"] {
  background-color: #f39c2c;
  color: #ffffff;
  border-radius: 10px;
  border: none;
  transition: background-color 0.3s ease;
  font-weight: bold;
  font-size: 1.5em;
}
input.give-btn[type="submit"]:hover,
input.give-btn[type="submit"]:focus {
  background-color: #ED8F0C;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.5em;
}
/* My Experiment To Try And Make Amount Options Smaller */
.give-donation-level-btn {
  font-weight: bold;
  font-size: 0.9em;
}
/* Force GiveWP buttons to full width inside their container */
form[id^="give-form"] .give-btn,
form[id^="give-form"] input.give-btn[type="submit"] {
  display: block;
  width: 100%;
  box-sizing: border-box;
  /* ensures padding doesn’t break width */
}
/* Optional: add some spacing (margin) if needed */
form[id^="give-form"] .give-btn + .give-btn,
form[id^="give-form"] input.give-btn[type="submit"] + input.give-btn[type="submit"] {
  margin-top: 1em;
}
/* Make the initial "Make a Donation" button full width */
.give-form-wrap.give-display-button .give-btn,
.give-form-wrap.give-display-button-only .give-btn {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  text-align: center;
  box-sizing: border-box;
}
/* Apply radius to the modal content container */
.mfp-wrap.give-modal .mfp-content {
  border-radius: 10px !important;
  overflow: hidden;
  /* ensures child content doesn’t overflow the rounded corners */
}
/* In case the outer wrap also needs rounding */
.mfp-wrap.give-modal {
  border-radius: 10px !important;
  overflow: hidden;
}
/* If the form wrapper inside the modal also needs radius */
.mfp-wrap.give-modal .give-form {
  border-radius: 10px !important;
}
.mfp-content .give-form-content-wrap img {
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hide-on-tablet {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .hide-on-desktop {
    display: none !important;
  }
}
