/* Definisi custom column col-1-5 (20%) */
        .error {
            color: red;
        }
        .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;
        }
        .content-padding {
            max-width: 600px; /* Batasan untuk tampilan mobile-first */
            margin: auto;
        }
        .main-donation-btn {
            background-color: #00b34a; /* Warna hijau khas donasi */
            border-color: #00b34a;
            color: white;
            font-weight: bold;
            padding: 12px;
            border-radius: 12px;
            transition: background-color 0.3s;
        }
        .main-donation-btn:hover {
            background-color: #008f3a;
            color: white;
        }

        /* Styling Kategori */
        .category-icon-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #343a40;
            margin-bottom: 10px;
        }
        .category-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            margin-bottom: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s, box-shadow 0.2s;
            /* Default background and text color. Will be overridden by AJAX */
            background-color: #ffffff; 
            color: #3498db; 
        }
        .category-icon-box:hover .category-icon {
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }
        .category-text {
            font-size: 0.75rem;
            font-weight: 500;
            line-height: 1.1;
            height: 2.2em; /* Ensure two lines */
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Styling Kampanye Ringkas */
        .card-campaign {
            margin-bottom: 15px;
            border-radius: 12px;
            border: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        .progress {
            background-color: #e9ecef;
        }
        .progress-bar {
            background-color: #00b34a;
        }
        .shimmer {
            animation: shimmer 1.5s infinite linear;
            background: linear-gradient(to right, #f6f7f8 4%, #edeef1 25%, #f6f7f8 36%);
            background-size: 1000px 100%;
        }
        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }