/* Definisi custom column col-1-5 (20%) */
 .error { color: red; }

 /* Styling untuk Header Halaman Donasi yang disederhanakan */
 .donation-header {
  display: flex;
  align-items: center;
  padding: 15px 0;
  margin-bottom: 15px;
  background-color: #f8f9fa; /* Ubah warna latar belakang body utama ke abu muda */
 }
 .donation-header a {
  color: #333;
  font-size: 1.5rem;
  padding-left: 15px;
 }
 .donation-header h5 {
  flex-grow: 1;
  text-align: center;
  font-weight: bold;
  margin: 0;
  padding-right: 40px; 
  color: #00b34a; /* Judul berwarna hijau */
 }

 .col-1-5 {
  flex: 0 0 20%;
  max-width: 20%;
  position: relative;
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
 }

 /* Mengatasi batasan padding default pada footer */
 .footer_sedekah .p-3 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
 }

 .icon-footer {
  height: 28px;
  width: 28px;
  display: block;
  margin: 0 auto;
 }

 .font-foter{
  font-family: sans-serif; /* Simulating montserrat-regular */
  font-size:10px;
  color:#878383;
  line-height: 1.2;
 }
 .font-foter-active{
  font-family: sans-serif; /* Simulating montserrat-regular */
  color:#00b34a;
  font-size:10px;
  line-height: 1.2;
 }
 .card-campaign {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
  overflow: hidden;
 }
 .progress {
  height: 8px;
  border-radius: 4px;
  background-color: #e9ecef;
 }
 .progress-bar {
  background-color: #00b34a;
 }
 /* Style untuk menjaga container tetap di 480px saat simulasi */
 .with-navbar {
  background-color: #f8f9fa; /* Warna latar belakang body */
  min-height: 100vh;
 }
 /* Padding tambahan untuk konten agar tidak tertutup footer fixed */
 .content-padding {
  padding-bottom: 80px; 
 }

 /* Tambahan style untuk tombol donasi utama (Tidak digunakan di halaman ini, tapi dari template) */
 .main-donation-btn {
  background-color: #00b34a;
  color: white;
  padding: 15px 0;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 15px;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(0, 179, 74, 0.4);
 }
 .main-donation-btn:hover {
  background-color: #008f3a;
 }

 .category-icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
 }
 .category-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e6ffe6;
  color: #00b34a;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 5px;
 }
 .category-text {
  font-size: 0.7rem;
  color: #333;
  font-weight: 500;
  text-align: center;
 }
 /* Custom Styling for Instruction Steps */
.instruction-step {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}
.instruction-step li {
    position: relative;
    padding-left: 2.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.instruction-step li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #008000; /* Green NU */
    color: white;
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 0.875rem;
}
.instruction-section {
    border: 1px solid #dee2e6; /* Bootstrap default border */
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    transition: all 0.2s;
}
.instruction-section:hover {
    border-color: #adb5bd;
}