/* ============================== */
/* 💰 DONATE BOX (JOOMDONATION) */
/* ============================== */

/* Container */
.jd-donation-box,
.mod-jd-donation {
  background: #ffffff !important;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
}

/* Title */
.jd-donation-box h3,
.mod-jd-donation h3 {
  color: #5C8001;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Raised text */
.jd-donation-box .raised {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 10px;
}

/* Input amount */
.jd-donation-box input,
.mod-jd-donation input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 12px;
  font-size: 16px;
  margin-bottom: 15px;
}

/* Nominal buttons */
.jd-donation-box .amount-option,
.mod-jd-donation .amount-option {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin: 5px;
  cursor: pointer;
  transition: 0.3s;
  background: #f9fafb;
}

/* Hover nominal */
.jd-donation-box .amount-option:hover {
  background: #7CB518;
  color: #fff;
  border-color: #7CB518;
}

/* Active nominal */
.jd-donation-box .amount-option.active {
  background: #5C8001;
  color: #fff;
  border-color: #5C8001;
}

/* Donate button */
.jd-donation-box .btn,
.mod-jd-donation .btn {
  width: 100%;
  background: #FB6107;
  border: none;
  padding: 14px;
  font-weight: bold;
  border-radius: 12px;
  transition: 0.3s;
}

/* Hover button */
.jd-donation-box .btn:hover {
  background: #d94f05;
}

/* Progress / bar (kalau ada) */
.jd-donation-box .progress-bar {
  background: #7CB518;
}

/* Hilangkan background ungu default */
.jd-donation-box,
.mod-jd-donation {
  background-image: none !important;
}