        @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

        :root {
            --primary-green: #198754;
            --dark-green: #0d5132;
            --accent-gold: #ffc107;
            --soft-bg: #f8fafc;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #fff;
            color: #334155;
        }

        .hero-header {
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 80px 0;
        }

        .hero-header::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(13, 81, 50, 0.6)); 
            z-index: 1;
        }

        .hero-header .container { position: relative; z-index: 2; }

        .hero-title {
            font-weight: 800;
            font-size: clamp(2rem, 4vw, 3rem);
            color: white;
            line-height: 1.2;
        }

        .main-content-wrapper {
            margin-top: -80px;
            position: relative;
            z-index: 10;
            padding-bottom: 80px;
        }

        .stats-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 30px;
            border: 1px solid #f1f5f9;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .filter-box {
            background: #ffffff;
            padding: 25px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border: 1px solid #f1f5f9;
            margin-bottom: 30px;
        }

        .summary-item {
            padding: 12px 16px;
            border-radius: 12px;
            background: #f8fafc;
            margin-bottom: 8px;
            transition: all 0.2s;
            border: 1px solid transparent;
        }

        .summary-item:hover {
            transform: translateX(5px);
            background: #f0fdf4;
            border-color: var(--primary-green);
        }

        .count-badge {
            background: var(--primary-green);
            color: white;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
        }

        .total-banner {
            background: var(--dark-green);
            color: white;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin-top: 20px;
        }

        .form-select {
            border-radius: 10px;
            padding: 10px 15px;
            border: 2px solid #f1f5f9;
        }

        /* Styling saat filter dikunci */
        .form-select:disabled {
            background-color: #e9ecef;
            cursor: not-allowed;
            color: #adb5bd;
        }

        .form-select:focus {
            border-color: var(--primary-green);
            box-shadow: none;
        }

        .btn-success {
            border-radius: 10px;
            padding: 10px 20px;
            font-weight: 700;
            background-color: var(--primary-green);
            border: none;
        }
