        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #ffffff;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        /* Collapsible Sidebar Styles */
        @media (min-width: 992px) {
            .sidebar-container {
                transition: width 0.3s ease;
            }

            .sidebar-container.collapsed {
                width: 76px !important;
            }

            .main-content-wrapper {
                transition: margin-left 0.3s ease;
            }

            .main-content-wrapper.expanded {
                margin-left: 76px !important;
            }

            .sidebar-container.collapsed .sidebar-brand-header h6,
            .sidebar-container.collapsed .sidebar-brand-header small,
            .sidebar-container.collapsed .nav-link span,
            .sidebar-container.collapsed .nav-item small {
                display: none !important;
            }

            .sidebar-container.collapsed .brand-icon-wrapper {
                margin-right: 0 !important;
            }

            .sidebar-container.collapsed .sidebar-brand-header {
                justify-content: center !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
            }

            .sidebar-container.collapsed .nav-link {
                justify-content: center;
                padding-left: 0;
                padding-right: 0;
            }

            .sidebar-container.collapsed .nav-link i {
                margin-right: 0 !important;
                font-size: 1.4rem;
            }

            .sidebar-container.collapsed .btn-logout-hover span {
                display: none;
            }

            .sidebar-container.collapsed .btn-logout-hover i {
                margin-right: 0 !important;
            }
        }

        .full-screen-wrapper {
            min-height: 100vh;
            display: flex;
            width: 100%;
        }

        /* Sidebar Kiri (Hijau Muda) */
        .sidebar-brand {
            background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
            color: white;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: hidden;
        }

        .sidebar-brand::after {
            content: "\F47C";
            /* bootstrap icon for building/mosque */
            font-family: "bootstrap-icons";
            position: absolute;
            bottom: -10%;
            right: -10%;
            font-size: 35vh;
            opacity: 0.07;
            z-index: 1;
        }

        .sidebar-content {
            position: relative;
            z-index: 2;
            padding: 10% 15%;
        }

        .brand-logo {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: #ffffff;
            color: #10b981;
            border-radius: 10px;
            font-size: 1.5rem;
            margin-right: 1rem;
        }

        /* Right Form Container */
        .form-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 2rem;
            height: 100%;
        }

        .form-container {
            width: 100%;
            max-width: 550px;
            margin: 0 auto;
        }

        /* Custom Inputs */
        .form-control {
            border-radius: 0.5rem;
            padding: 0.65rem 1rem;
        }

        .form-control:focus {
            border-color: #10b981;
            box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.25);
            z-index: 5;
        }

        .input-group .btn-outline-secondary:focus,
        .input-group .btn-outline-secondary:hover {
            box-shadow: none;
            background-color: transparent;
        }

        .input-group .form-control:focus+.btn-outline-secondary {
            border-color: #10b981;
        }

        /* Password Toggle */
        .toggle-password {
            cursor: pointer;
            z-index: 5;
            padding: 0.5rem;
            color: #64748b;
            transition: color 0.2s;
        }

        .toggle-password:hover {
            color: #0f172a;
        }

        /* Button Customization */
        .btn-success-custom {
            background-color: #10b981;
            border-color: #10b981;
            color: white;
            font-weight: 600;
            padding: 0.65rem 1.5rem;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
        }

        .btn-sm.btn-success-custom,
        .btn-success-custom.btn-sm {
            padding: 0.35rem 0.85rem !important;
            font-size: 0.82rem !important;
            font-weight: 600 !important;
            border-radius: 0.45rem !important;
        }

        .btn-success-custom:hover,
        .btn-success-custom:focus {
            background-color: #059669;
            border-color: #059669;
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }

        .btn-success-custom:disabled {
            background-color: #10b981;
            opacity: 0.7;
            transform: none;
            box-shadow: none;
        }

        .btn-outline-success-custom {
            color: #10b981 !important;
            border: 1px solid #10b981 !important;
            background-color: #ffffff !important;
            transition: all 0.25s ease !important;
        }

        .btn-outline-success-custom:hover,
        .btn-outline-success-custom:focus,
        .btn-outline-success-custom:active {
            background-color: #10b981 !important;
            border-color: #10b981 !important;
            color: #ffffff !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25) !important;
        }

        .btn-outline-success-custom:hover i,
        .btn-outline-success-custom:focus i,
        .btn-outline-success-custom:active i {
            color: #ffffff !important;
        }

        .btn-outline-danger-custom {
            color: #ef4444 !important;
            border: 1px solid #ef4444 !important;
            background-color: #ffffff !important;
            transition: all 0.25s ease !important;
        }

        .btn-outline-danger-custom:hover,
        .btn-outline-danger-custom:focus,
        .btn-outline-danger-custom:active {
            background-color: #ef4444 !important;
            border-color: #ef4444 !important;
            color: #ffffff !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25) !important;
        }

        .btn-outline-danger-custom:hover i,
        .btn-outline-danger-custom:focus i,
        .btn-outline-danger-custom:active i {
            color: #ffffff !important;
        }

        .form-check-input:checked {
            background-color: #10b981;
            border-color: #10b981;
        }

        .login-link {
            color: #10b981;
            text-decoration: none;
            font-weight: 600;
        }

        .login-link:hover {
            color: #059669;
            text-decoration: underline;
        }

        /* Toast Container */
        .toast-container {
            position: fixed;
            top: 1rem;
            right: 1rem;
            z-index: 1055;
        }

        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .sidebar-brand {
                min-height: 250px;
                padding: 2rem 1rem;
            }

            .sidebar-content {
                padding: 5%;
            }

            .form-section {
                padding: 2rem 1rem;
                justify-content: flex-start;
            }
        }

        @media (min-width: 992px) {

            /* Pastikan form di desktop tidak scroll */
            body {
                overflow: hidden;
            }
        }

        /* Auth Pages Custom Styling (Login, Register, OTP)*/
        body.auth-page {
            background-color: #147257;
            /* Dark green background */
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-y: auto !important;
            /* Override style.css overflow: hidden on desktop */
            overflow-x: hidden;
        }

        .auth-page .card-auth,
        .auth-page .card-register {
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            margin: 0 auto;
        }

        .auth-page .card-auth {
            max-width: 480px;
        }

        .auth-page .form-control,
        .auth-page .bg-input {
            background-color: #f3f4f6;
            border: 1px solid #f3f4f6;
            border-radius: 8px;
            padding: 12px 16px;
            font-size: 0.95rem;
        }

        .auth-page .form-control.otp-input {
            font-size: 1.1rem;
            letter-spacing: 2px;
            text-align: center;
        }

        .auth-page .form-control:focus {
            background-color: #ffffff;
            border-color: #147257;
            box-shadow: 0 0 0 0.25rem rgba(20, 114, 87, 0.15);
        }

        .auth-page .input-group>.form-control {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }

        .auth-page .input-group>.btn {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            padding-right: 16px;
        }

        .auth-page .input-group .form-control:focus+.btn {
            background-color: #ffffff;
            border-color: #147257;
            border-left-color: #f3f4f6;
        }

        .auth-page .btn-success-custom {
            background-color: #147257;
            border-color: #147257;
            color: #ffffff;
            padding: 12px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.2s ease-in-out;
        }

        .auth-page .btn-success-custom:hover,
        .auth-page .btn-success-custom:focus {
            background-color: #0d533f;
            border-color: #0d533f;
            color: #ffffff;
        }

        .auth-page .auth-link,
        .auth-page .login-link,
        .auth-page .resend-link {
            color: #147257;
            font-weight: 700;
            text-decoration: none;
            cursor: pointer;
        }

        .auth-page .auth-link:hover,
        .auth-page .login-link:hover,
        .auth-page .resend-link:hover {
            color: #0d533f;
            text-decoration: underline;
        }

        .auth-page .email-placeholder {
            font-weight: 600;
            color: #147257;
        }

        .auth-page input[type="password"]::-ms-reveal,
        .auth-page input[type="password"]::-ms-clear {
            display: none;
        }

        /*Dashboard Styling (Layout, Sidebar, Cards) */
        .bg-dashboard {
            background-color: #f8fafc;
            /* Very light gray/white background */
            overflow-x: hidden;
            overflow-y: auto !important;
            /* Enable scroll on desktop */
        }

        /* Colors */
        .bg-dark-blue {
            background-color: #0f172a !important;
            /* Deep navy blue for sidebar */
        }

        .text-dark-blue {
            color: #0f172a !important;
        }

        .bg-success-soft {
            background-color: #d1fae5 !important;
        }

        .bg-warning-soft {
            background-color: #fef3c7 !important;
        }

        .bg-primary-soft {
            background-color: #dbeafe !important;
        }

        .bg-gray-soft {
            background-color: #f1f5f9 !important;
        }

        /* Sidebar Styling */
        .sidebar-container {
            width: 260px;
            z-index: 1045;
        }

        .sidebar-nav .nav-link {
            color: #cbd5e1;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.2s ease;
            border-left: 3px solid transparent;
        }

        .sidebar-nav .nav-link:hover,
        .sidebar-nav .nav-link:focus {
            color: #ffffff;
            background-color: rgba(255, 255, 255, 0.05);
        }

        .sidebar-nav .nav-link.active {
            color: #10b981;
            background-color: rgba(16, 185, 129, 0.1);
            border-left-color: #10b981;
            font-weight: 600;
        }

        .sidebar-nav .nav-link i {
            font-size: 1.15rem;
        }

        .btn-logout-hover:hover {
            background-color: #ef4444 !important;
            border-color: #ef4444 !important;
        }

        .sidebar-scroll {
            overflow-y: auto !important;
            flex: 1 1 auto !important;
            min-height: 0 !important;
        }

        .sidebar-scroll::-webkit-scrollbar {
            width: 4px;
        }

        .sidebar-scroll::-webkit-scrollbar-thumb {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
        }

        /* Main Content Layout & Sticky Bottom Footer */
        .main-content-wrapper {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .app-content-body {
            flex: 1 0 auto;
            width: 100%;
        }

        .app-footer {
            flex-shrink: 0;
            margin-top: auto;
            width: 100%;
        }

        @media (min-width: 992px) {
            .sidebar-container {
                position: fixed !important;
                top: 0 !important;
                bottom: 0 !important;
                left: 0 !important;
                width: 260px !important;
                height: 100vh !important;
                display: flex !important;
                flex-direction: column !important;
                z-index: 1040 !important;
            }

            .main-content-wrapper {
                margin-left: 260px;
                min-height: 100vh;
                display: flex;
                flex-direction: column;
                max-width: calc(100vw - 260px);
                transition: margin-left 0.3s ease, max-width 0.3s ease;
            }

            .main-content-wrapper.expanded {
                margin-left: 76px;
                max-width: calc(100vw - 76px) !important;
            }
        }

        /* Mobile Optimization & Responsive Rules */
        @media (max-width: 991.98px) {

            /* Mobile Drawer Sidebar (Kriya UMKM POS Style - Half/Drawer Screen with Visible Backdrop) */
            #sidebarMenu.sidebar-container,
            .offcanvas-lg.sidebar-container {
                --bs-offcanvas-width: 275px !important;
                width: 275px !important;
                max-width: 75vw !important;
                height: 100vh !important;
                height: 100dvh !important;
                box-shadow: 4px 0 25px rgba(0, 0, 0, 0.35) !important;
                border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
            }

            #sidebarMenu .offcanvas-body {
                padding-bottom: max(0.5rem, env(safe-area-inset-bottom, 0.5rem)) !important;
            }

            .offcanvas-backdrop {
                background-color: rgba(15, 23, 42, 0.55) !important;
                backdrop-filter: blur(2px) !important;
                -webkit-backdrop-filter: blur(2px) !important;
            }

            .offcanvas-backdrop.show {
                opacity: 1 !important;
            }

            .main-content-wrapper {
                margin-left: 0 !important;
                max-width: 100vw !important;
                width: 100% !important;
                min-height: 100vh;
                display: flex;
                flex-direction: column;
                overflow-x: hidden;
            }

            .app-top-header {
                height: 58px !important;
                padding-left: 14px !important;
                padding-right: 14px !important;
            }

            .container-fluid {
                padding-left: 14px !important;
                padding-right: 14px !important;
                padding-top: 16px !important;
                padding-bottom: 24px !important;
            }

            /* Responsive Forms & Actions */
            #filterForm {
                width: 100% !important;
                flex-wrap: wrap !important;
                gap: 6px !important;
            }

            #filterInputs {
                flex-wrap: wrap !important;
                width: 100% !important;
                margin-top: 4px;
                padding-top: 4px;
                border-left: none !important;
                padding-left: 0 !important;
                margin-left: 0 !important;
            }

            .table-responsive {
                border-radius: 8px;
                -webkit-overflow-scrolling: touch;
            }
        }

        /* Compact Table Styling for Modern Dense Data Views */
        .table-compact {
            font-size: 0.835rem;
        }

        .table-compact th {
            padding: 0.55rem 0.75rem !important;
            font-weight: 600;
            letter-spacing: 0.3px;
            font-size: 0.75rem;
            background-color: #f8fafc !important;
            border-bottom: 1px solid #e2e8f0 !important;
        }

        .table-compact td {
            padding: 0.45rem 0.75rem !important;
            vertical-align: middle;
            border-bottom: 1px solid #f1f5f9;
        }

        .table-compact tbody tr:hover {
            background-color: #f8fafc;
        }

        /* Top Header Sticky Bar (Universal Across Modules) */
        .app-top-header {
            position: sticky;
            top: 0;
            z-index: 1025;
            background-color: #ffffff !important;
            border-bottom: 1px solid #e2e8f0;
            height: 54px;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.03);
            transition: all 0.2s ease;
        }

        .app-top-header .dropdown-menu {
            position: absolute !important;
            right: 0 !important;
            left: auto !important;
            top: 100% !important;
            margin-top: 8px !important;
            z-index: 1070 !important;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.08) !important;
        }

        .app-top-header .dropdown-menu.show {
            display: block !important;
        }

        .btn-hamburger-stroke {
            color: #1e293b !important;
            width: 38px;
            height: 38px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .btn-hamburger-stroke:hover {
            background-color: #f1f5f9 !important;
            color: #10b981 !important;
        }

        .btn-hamburger-stroke i {
            font-size: 1.6rem;
            line-height: 1;
        }

        /* Dashboard Cards */
        .dashboard-card {
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .dashboard-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }

        /* Universal Card Dashboard (Digunakan di Analisis, Proyek, User, WA, Laporan) */
        .card-dashboard {
            --bs-card-border-radius: 14px;
            --bs-card-inner-border-radius: 14px;
            border-radius: 14px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            background-color: #ffffff;
        }

        .card-dashboard.shadow-sm {
            box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.03) !important;
        }

        .card-dashboard.shadow-sm:hover {
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04) !important;
            transform: translateY(-2px);
        }

        /* Multi-Pocket Ledger Cards */
        .pocket-card {
            border-radius: 14px !important;
            border: none !important;
            cursor: pointer;
            box-shadow: 0 7px 18px -2px rgba(0, 0, 0, 0.13), 0 3px 6px -2px rgba(0, 0, 0, 0.05);
            transition: transform 0.22s ease, box-shadow 0.22s ease, min-height 0.25s ease;
            min-height: 155px;
        }

        .pocket-card .card-body {
            padding: 1.15rem 1.15rem !important;
            transition: padding 0.25s ease;
        }

        /* Saat Sidebar Ditutup di Desktop (.expanded): tinggi dan padding kartu kembali lebih luas */
        .main-content-wrapper.expanded .pocket-card {
            min-height: 168px;
        }

        .main-content-wrapper.expanded .pocket-card .card-body {
            padding: 1.25rem !important;
        }

        .pocket-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 13px 25px -4px rgba(0, 0, 0, 0.2), 0 5px 10px -3px rgba(0, 0, 0, 0.08);
        }

        /* Typography Fleksibel untuk Nominal Saldo Pocket */
        /* Kondisi 1: Saat Sidebar Terbuka di Desktop (area konten sempit) */
        .pocket-balance-amount {
            font-size: 1.06rem !important;
            font-weight: 700;
            line-height: 1.2;
            transition: font-size 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .balance-currency {
            letter-spacing: normal !important;
            display: inline-block;
            user-select: none;
        }

        .balance-value {
            display: inline-block;
        }

        /* Kondisi 2: Saat Sidebar Ditutup di Desktop (.expanded) -> Kembali normal besar seperti awal (1.35rem) */
        .main-content-wrapper.expanded .pocket-balance-amount {
            font-size: 1.35rem !important;
        }

        /* Kondisi 3: Di Mobile / Tablet (< 992px) */
        @media (max-width: 991.98px) {
            .pocket-balance-amount {
                font-size: 1.15rem !important;
            }
        }

        /* Kondisi 3.1: Di Layar Mobile Smartphone (< 768px) -> Format Grid 2xN Rapi & Padat */
        @media (max-width: 767.98px) {
            .pocket-card {
                min-height: 125px !important;
                border-radius: 12px !important;
            }

            .pocket-card .card-body {
                padding: 0.75rem 0.65rem !important;
            }

            .pocket-card .pocket-icon-circle {
                width: 26px !important;
                height: 26px !important;
            }

            .pocket-card .pocket-icon-circle i {
                font-size: 0.75rem !important;
            }

            .pocket-card .pocket-code-title {
                font-size: 0.74rem !important;
                letter-spacing: 0.2px !important;
            }

            .pocket-balance-amount {
                font-size: clamp(0.78rem, 2.9vw, 0.88rem) !important;
                letter-spacing: -0.25px !important;
                line-height: 1.2 !important;
            }

            .pocket-balance-amount .balance-currency {
                font-size: 0.8em !important;
                margin-right: 1px !important;
                opacity: 0.95;
            }

            .pocket-balance-amount .balance-value {
                letter-spacing: 0px !important;
            }

            .pocket-balance-amount[data-is-masked="true"] .balance-value {
                letter-spacing: 1.5px !important;
            }

            .btn-toggle-balance {
                width: 24px !important;
                height: 24px !important;
                flex-shrink: 0 !important;
            }

            .btn-toggle-balance i {
                font-size: 0.72rem !important;
            }

            /* Modal Popups Ergonomi Mobile Proporsional */
            .modal-dialog {
                margin: 0.75rem auto !important;
                max-width: calc(100% - 1.5rem) !important;
            }

            .modal-content {
                border-radius: 14px !important;
            }

            .modal-header {
                padding: 0.85rem 1.15rem !important;
            }

            .modal-header .modal-title {
                font-size: 0.95rem !important;
            }

            .modal-body {
                padding: 1rem 1.15rem !important;
            }

            .modal-footer,
            .modal-body form .d-flex.justify-content-end {
                padding-top: 0.75rem !important;
                margin-top: 0.75rem !important;
                gap: 0.5rem !important;
            }

            .modal-footer .btn,
            .modal-body form .d-flex.justify-content-end .btn,
            .btn-sm.btn-success-custom,
            .btn-success-custom.btn-sm {
                padding: 0.32rem 0.75rem !important;
                font-size: 0.78rem !important;
                font-weight: 600 !important;
            }

            .btn-success-custom:not(.btn-sm) {
                padding: 0.45rem 1rem !important;
                font-size: 0.84rem !important;
            }

            .mp-custom-field,
            .form-control,
            .form-select {
                padding: 0.32rem 0.55rem !important;
                font-size: 0.8rem !important;
                border-radius: 6px !important;
            }

            .form-select {
                padding-right: 1.8rem !important;
                background-position: right 0.5rem center !important;
            }

            .mp-custom-label,
            .form-label {
                font-size: 0.73rem !important;
                margin-bottom: 0.12rem !important;
            }

            .input-group .input-group-text {
                font-size: 0.8rem !important;
                padding: 0.32rem 0.55rem !important;
            }

            /* Responsive Component Master Pocket di Mobile */
            #modalListPocket .table-responsive {
                overflow-x: hidden !important;
            }

            #modalListPocket .table {
                table-layout: fixed !important;
                width: 100% !important;
            }

            #modalListPocket .table th,
            #modalListPocket .table td {
                padding: 0.35rem 0.4rem !important;
                font-size: 0.74rem !important;
            }

            #modalListPocket .table .btn-sm {
                padding: 0.2rem !important;
                width: 26px !important;
                height: 26px !important;
                font-size: 0.72rem !important;
            }

            #btnTambahPocketFromList {
                padding: 0.22rem 0.6rem !important;
                font-size: 0.74rem !important;
                height: auto !important;
                width: auto !important;
            }

            #previewPocketCard {
                min-height: 135px !important;
            }

            .btn-preset-color {
                width: 26px !important;
                height: 26px !important;
            }
        }

        /* Header Action Buttons Symmetrical Styling */
        .header-action-btn {
            height: 36px !important;
            font-size: 0.82rem !important;
            border-radius: 8px !important;
            padding: 0 0.85rem !important;
            line-height: 1 !important;
            border-width: 1.5px !important;
        }

        .btn-outline-success,
        .header-action-btn.btn-outline-success {
            color: #10b981 !important;
            border-color: #10b981 !important;
            background-color: #ffffff;
            transition: all 0.2s ease;
        }

        .btn-outline-success:hover,
        .btn-outline-success:focus,
        .btn-outline-success:active,
        .btn-outline-success.active,
        .btn-outline-success.show,
        .dropdown.show>.btn-outline-success,
        .dropdown .btn-outline-success[aria-expanded="true"],
        .header-action-btn.btn-outline-success:hover,
        .header-action-btn.btn-outline-success:focus,
        .header-action-btn.btn-outline-success:active,
        .header-action-btn.btn-outline-success.show {
            background-color: #10b981 !important;
            color: #ffffff !important;
            border-color: #10b981 !important;
            box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25) !important;
        }

        /* Icon Selector Full Width Grid */
        #iconSelectorContainer {
            display: grid !important;
            grid-template-columns: repeat(9, 1fr) !important;
            gap: 6px !important;
        }

        #iconSelectorContainer .btn-select-icon {
            width: 100% !important;
            height: 36px !important;
            border-radius: 7px !important;
            font-size: 0.95rem !important;
        }

        @media (max-width: 576px) {
            .header-action-btn {
                height: 34px !important;
                font-size: 0.78rem !important;
                padding: 0 0.75rem !important;
            }

            #iconSelectorContainer {
                grid-template-columns: repeat(6, 1fr) !important;
                gap: 5px !important;
            }

            #iconSelectorContainer .btn-select-icon {
                height: 32px !important;
                font-size: 0.85rem !important;
            }
        }

        /* Kondisi 4: Di Monitor Lebar (>= 1500px) -> Ruang 4 kolom selalu lega */
        @media (min-width: 1500px) {
            .pocket-balance-amount {
                font-size: 1.35rem !important;
            }
        }

        /* Tombol Eye Toggle Saldo Pocket */
        .btn-toggle-balance {
            background: rgba(255, 255, 255, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.28);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
            padding: 0;
            outline: none;
        }

        .btn-toggle-balance:hover {
            background: rgba(255, 255, 255, 0.35);
            border-color: rgba(255, 255, 255, 0.45);
            color: #ffffff;
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .btn-toggle-balance:active {
            transform: scale(0.92);
        }

        .btn-toggle-balance i {
            font-size: 0.88rem;
            line-height: 1;
        }

        .icon-box {
            width: 38px;
            height: 38px;
            font-size: 1.1rem;
        }

        /* Typography & Utilities */
        .letter-spacing-1 {
            letter-spacing: 1px;
        }

        .donut-center-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 10;
            width: 100%;
            max-width: 160px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .donut-center-title {
            font-size: 0.78rem;
            line-height: 1.2;
            letter-spacing: 1px;
        }

        .donut-center-amount {
            font-size: 1.25rem;
            letter-spacing: -0.5px;
        }

        @media (max-width: 576px) {
            .donut-center-text {
                max-width: 125px;
            }
            .donut-center-title {
                font-size: 0.65rem !important;
                letter-spacing: 0.5px !important;
            }
            .donut-center-amount {
                font-size: 0.88rem !important;
                letter-spacing: -0.3px !important;
            }
        }

        /* Memastikan label keterangan Donut Chart tidak terpotong di tepi SVG manapun */
        #chartSaldo,
        #chartSaldo .highcharts-container,
        #chartSaldo svg {
            overflow: visible !important;
        }


        /* sidebar dashboard */
        .bg-hijau-custom {
            background-color: #147257 !important;
        }

        .text-hijau-custom {
            color: #147257 !important;
        }

        .sidebar-brand-header {
            border-bottom-color: rgba(255, 255, 255, 0.2) !important;
        }

        /* Print Stylesheet (@media print) for Official Institutional Reports */
        @media print {
            @page {
                size: A4 portrait;
                margin: 1.2cm 1.5cm 1.5cm 1.5cm;
            }

            /* Sembunyikan elemen dashboard & antarmuka web saat cetak */
            #sidebarMenu,
            .navbar,
            #sidebarToggleBtn,
            #formFilterLaporan,
            .card-header .btn,
            .btn,
            .toast-container,
            .modal,
            footer,
            .d-print-none {
                display: none !important;
            }

            /* Reset background & layout desktop */
            html,
            body,
            .bg-dashboard {
                background-color: #ffffff !important;
                background-image: none !important;
                color: #0f172a !important;
                margin: 0 !important;
                padding: 0 !important;
                overflow: visible !important;
                font-size: 9.5pt !important;
            }

            .main-content-wrapper {
                margin-left: 0 !important;
                padding: 0 !important;
                max-width: 100% !important;
                width: 100% !important;
            }

            .container-fluid {
                padding: 0 !important;
                margin: 0 !important;
                max-width: 100% !important;
            }

            .card,
            .card-dashboard {
                border: none !important;
                box-shadow: none !important;
                padding: 0 !important;
                margin: 0 !important;
                background: transparent !important;
            }

            .card-body {
                padding: 0 !important;
            }

            /* Tampilkan komponen print-only */
            .d-print-block {
                display: block !important;
            }

            .d-print-table {
                display: table !important;
            }

            .d-print-flex {
                display: flex !important;
            }

            /* Format Tabel Cetak Rapi */
            .table-responsive {
                overflow: visible !important;
            }

            table.table {
                width: 100% !important;
                border-collapse: collapse !important;
                font-size: 8.5pt !important;
                margin-bottom: 1rem !important;
            }

            table.table thead {
                display: table-header-group !important;
            }

            table.table tr {
                page-break-inside: avoid !important;
            }

            table.table th,
            table.table td {
                border: 1px solid #cbd5e1 !important;
                padding: 6px 8px !important;
                color: #0f172a !important;
            }

            table.table thead th {
                background-color: #f1f5f9 !important;
                -webkit-print-color-adjust: exact;
                print-color-adjust: exact;
                font-weight: 700 !important;
            }

            .badge {
                border: none !important;
                padding: 0 !important;
                font-weight: 500 !important;
                color: #334155 !important;
                background: transparent !important;
            }

            .print-avoid-break {
                page-break-inside: avoid !important;
            }
        }

        /* Crisp, High-Contrast Form Inputs & Modals (Universal Style) */
        .form-control,
        .form-control-sm {
            background-color: #ffffff !important;
            border: 1.5px solid #cbd5e1 !important;
            color: #0f172a !important;
            font-weight: 500;
            border-radius: 7px;
            padding: 0.38rem 0.65rem;
            font-size: 0.835rem;
            transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        }

        .form-select {
            background-color: #ffffff;
            border: 1.5px solid #cbd5e1;
            color: #0f172a !important;
            font-weight: 500;
            border-radius: 7px;
            padding: 0.38rem 2.25rem 0.38rem 0.75rem !important;
            font-size: 0.835rem;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
            background-repeat: no-repeat !important;
            background-position: right 0.75rem center !important;
            background-size: 14px 10px !important;
            transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        }

        .form-select-sm {
            background-color: #ffffff;
            border: 1.5px solid #cbd5e1;
            color: #0f172a !important;
            font-weight: 500;
            border-radius: 7px;
            padding: 0.3rem 1.85rem 0.3rem 0.65rem !important;
            font-size: 0.82rem;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
            background-repeat: no-repeat !important;
            background-position: right 0.55rem center !important;
            background-size: 12px 8px !important;
            transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        }

        .form-control:focus,
        .form-select:focus,
        .form-control-sm:focus,
        .form-select-sm:focus {
            border-color: #10b981 !important;
            box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.15) !important;
            color: #0f172a !important;
        }

        /* Utility classes overrides for form inputs */
        .form-select.border-0,
        .form-control.border-0 {
            border: none !important;
        }

        .form-select.bg-transparent,
        .form-control.bg-transparent {
            background-color: transparent !important;
        }

        .form-select.bg-light,
        .form-control.bg-light {
            background-color: #f8fafc !important;
        }

        .form-control::placeholder {
            color: #94a3b8 !important;
            font-weight: 400;
        }

        .form-label {
            color: #1e293b !important;
            font-weight: 600;
            font-size: 0.78rem;
            margin-bottom: 0.22rem;
        }

        .input-group .input-group-text {
            background-color: #f8fafc !important;
            border: 1.5px solid #cbd5e1 !important;
            color: #475569 !important;
            font-size: 0.835rem;
            font-weight: 500;
        }

        .input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
            margin-left: -1.5px;
        }

        .input-group .btn-outline-secondary {
            border: 1.5px solid #cbd5e1 !important;
            background-color: #f8fafc;
            color: #64748b;
        }

        .input-group .btn-outline-secondary:hover {
            background-color: #e2e8f0;
            color: #1e293b;
        }

        /* Compact & Crisp Modals */
        .modal-content {
            border-radius: 14px;
            border: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .modal-header {
            padding: 0.75rem 1.25rem;
            border-bottom: 1px solid #e2e8f0;
            background-color: #f8fafc;
            border-top-left-radius: 14px;
            border-top-right-radius: 14px;
        }

        .modal-header .modal-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: #0f172a;
        }

        .modal-body {
            padding: 1rem 1.25rem;
        }

        .modal-footer {
            padding: 0.65rem 1.25rem;
            border-top: 1px solid #e2e8f0;
            background-color: #f8fafc;
            border-bottom-left-radius: 14px;
            border-bottom-right-radius: 14px;
        }

        /* Responsive Mobile KPI Dashboard Cards */
        @media (max-width: 575.98px) {
            .card-dashboard .card-body {
                padding: 0.85rem !important;
            }

            .card-dashboard h5.fs-5 {
                font-size: 1.02rem !important;
                line-height: 1.3;
                white-space: nowrap;
            }
        }

        /* KRSI Custom Clean UI & Spacing Utility Shims */
        .tabular-num {
            font-variant-numeric: tabular-nums;
        }

        .custom-scroll::-webkit-scrollbar {
            width: 4px;
        }

        .custom-scroll::-webkit-scrollbar-track {
            background: transparent;
        }

        .custom-scroll::-webkit-scrollbar-thumb {
            background: #e2e8f0;
            border-radius: 4px;
        }

        .custom-scroll::-webkit-scrollbar-thumb:hover {
            background: #cbd5e1;
        }

        .custom-trx-pills .nav-link {
            color: #64748b !important;
            background: transparent !important;
            border: none !important;
            border-radius: 0.5rem !important;
            font-size: 0.8rem !important;
            font-weight: 500 !important;
            transition: all 0.2s ease !important;
        }

        .custom-trx-pills .nav-link:hover {
            color: #0f172a !important;
        }

        .custom-trx-pills .nav-link.active {
            background-color: #ffffff !important;
            color: #0f172a !important;
            font-weight: 600 !important;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
        }

        .form-custom-label {
            font-size: 0.7rem !important;
            font-weight: 700 !important;
            text-transform: uppercase !important;
            letter-spacing: 0.05em !important;
            color: #475569 !important;
            margin-bottom: 0.35rem !important;
            display: block;
        }

        .form-custom-label .text-none {
            text-transform: none !important;
            letter-spacing: normal !important;
        }

        .form-custom-field {
            background-color: #ffffff !important;
            border: 1px solid #e2e8f0 !important;
            color: #0f172a !important;
            font-weight: 500 !important;
            border-radius: 0.75rem !important;
            padding: 0.52rem 0.85rem !important;
            font-size: 0.84rem !important;
            transition: all 0.15s ease-in-out !important;
        }

        .form-custom-field:focus {
            background-color: #ffffff !important;
            border-color: #10b981 !important;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18) !important;
            outline: none !important;
        }

        .form-custom-field::placeholder {
            color: #94a3b8 !important;
            font-weight: 400 !important;
        }

        .trx-radio-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
            padding: 0.6rem 0.5rem;
            border-radius: 0.75rem;
            border: 1px solid #e2e8f0;
            background-color: #ffffff;
            color: #475569;
            font-size: 0.82rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.15s ease-in-out;
            user-select: none;
            width: 100%;
        }

        .trx-radio-btn:hover {
            background-color: #f8fafc;
            border-color: #cbd5e1;
        }

        input[type="radio"]:checked+.trx-radio-in {
            border: 2px solid #059669 !important;
            background-color: #ecfdf5 !important;
            color: #065f46 !important;
            font-weight: 600 !important;
        }

        input[type="radio"]:checked+.trx-radio-in svg {
            stroke: #059669;
        }

        input[type="radio"]:checked+.trx-radio-out {
            border: 2px solid #e11d48 !important;
            background-color: #fff1f2 !important;
            color: #9f1239 !important;
            font-weight: 600 !important;
        }

        input[type="radio"]:checked+.trx-radio-out svg {
            stroke: #e11d48;
        }

        input[type="radio"]:checked+.trx-radio-transfer {
            border: 2px solid #2563eb !important;
            background-color: #eff6ff !important;
            color: #1e40af !important;
            font-weight: 600 !important;
        }

        input[type="radio"]:checked+.trx-radio-transfer svg {
            stroke: #2563eb;
        }

        .btn-emerald-primary,
        .btn-success-custom {
            background-color: #059669 !important;
            color: #ffffff !important;
            border: 1px solid #047857 !important;
            border-radius: 0.75rem !important;
            font-size: 0.835rem !important;
            letter-spacing: 0.02em !important;
            box-shadow: 0 1px 3px 0 rgba(5, 150, 105, 0.25) !important;
            transition: all 0.15s ease-in-out !important;
        }

        .btn-emerald-primary:hover,
        .btn-success-custom:hover {
            background-color: #047857 !important;
            color: #ffffff !important;
            box-shadow: 0 3px 8px 0 rgba(5, 150, 105, 0.35) !important;
        }

        .btn-emerald-primary:active,
        .btn-success-custom:active {
            background-color: #065f46 !important;
        }

        .btn-blue-primary {
            background-color: #2563eb !important;
            color: #ffffff !important;
            border: 1px solid #1d4ed8 !important;
            border-radius: 0.65rem !important;
            font-weight: 600 !important;
            box-shadow: 0 1px 2px 0 rgba(37, 99, 235, 0.2) !important;
            transition: all 0.15s ease-in-out !important;
        }

        .btn-blue-primary:hover {
            background-color: #1d4ed8 !important;
            color: #ffffff !important;
            box-shadow: 0 3px 6px 0 rgba(37, 99, 235, 0.3) !important;
        }

        .btn-blue-primary:active {
            background-color: #1e40af !important;
        }

        .btn-amber-primary {
            background-color: #f59e0b !important;
            color: #0f172a !important;
            border: 1px solid #d97706 !important;
            border-radius: 0.65rem !important;
            font-weight: 600 !important;
            box-shadow: 0 1px 2px 0 rgba(245, 158, 11, 0.2) !important;
            transition: all 0.15s ease-in-out !important;
        }

        .btn-amber-primary:hover {
            background-color: #d97706 !important;
            color: #ffffff !important;
            box-shadow: 0 3px 6px 0 rgba(245, 158, 11, 0.3) !important;
        }

        .btn-amber-primary:active {
            background-color: #b45309 !important;
        }

        .custom-emerald-switch:checked {
            background-color: #059669 !important;
            border-color: #059669 !important;
        }

        .stat-hover-card {
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .stat-hover-card:hover {
            border-color: #cbd5e1 !important;
        }

        .pulse-dot {
            box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
            animation: pulseGreen 2s infinite;
        }

        @keyframes pulseGreen {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
            }

            70% {
                transform: scale(1);
                box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
            }

            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
            }
        }

        .gap-0\.5 {
            gap: 0.125rem !important;
        }

        .gap-1 {
            gap: 0.25rem !important;
        }

        .gap-1\.5 {
            gap: 0.375rem !important;
        }

        .gap-2 {
            gap: 0.5rem !important;
        }

        .gap-2\.5 {
            gap: 0.625rem !important;
        }

        .gap-3 {
            gap: 0.75rem !important;
        }

        .gap-3\.5 {
            gap: 0.875rem !important;
        }

        .gap-4 {
            gap: 1rem !important;
        }

        .p-1\.5 {
            padding: 0.375rem !important;
        }

        .p-2\.5 {
            padding: 0.625rem !important;
        }

        .p-3\.5 {
            padding: 0.875rem !important;
        }

        .px-1\.5 {
            padding-left: 0.375rem !important;
            padding-right: 0.375rem !important;
        }

        .px-2\.5 {
            padding-left: 0.625rem !important;
            padding-right: 0.625rem !important;
        }

        .px-3\.5 {
            padding-left: 0.875rem !important;
            padding-right: 0.875rem !important;
        }

        .py-1\.5 {
            padding-top: 0.375rem !important;
            padding-bottom: 0.375rem !important;
        }

        .py-2\.5 {
            padding-top: 0.625rem !important;
            padding-bottom: 0.625rem !important;
        }

        .pt-2\.5 {
            padding-top: 0.625rem !important;
        }

        .pb-2\.5 {
            padding-bottom: 0.625rem !important;
        }

        .mb-1\.5 {
            margin-bottom: 0.375rem !important;
        }

        .mt-0\.5 {
            margin-top: 0.125rem !important;
        }

        @media (min-width: 992px) {
            #chartAlokasiLegendsContainer {
                max-height: 250px !important;
                overflow-y: auto !important;
                -webkit-overflow-scrolling: touch;
            }
        }

        @media (max-width: 991.98px) {
            #chartAlokasiLegendsContainer {
                max-height: none !important;
                overflow-y: visible !important;
            }
        }

        .table-responsive {
            overflow-x: auto !important;
            -webkit-overflow-scrolling: touch !important;
            touch-action: pan-x pan-y !important;
            overscroll-behavior-x: contain !important;
        }

        .table-responsive::-webkit-scrollbar {
            height: 5px;
        }

        .table-responsive::-webkit-scrollbar-track {
            background: #f8fafc;
        }

        .table-responsive::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 4px;
        }

        .table-responsive::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

        .table-responsive>table {
            min-width: 660px !important;
        }

        /* Card Clean Standard */
        .card-clean {
            background-color: #ffffff !important;
            border: 1px solid #e2e8f0 !important;
            border-radius: 1rem !important;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.04) !important;
        }

        /* Clean Badges */
        .badge-soft-success {
            background-color: #ecfdf5 !important;
            color: #065f46 !important;
            border: 1px solid #a7f3d0 !important;
        }

        .badge-soft-danger {
            background-color: #fff1f2 !important;
            color: #9f1239 !important;
            border: 1px solid #fecdd3 !important;
        }

        .badge-soft-primary {
            background-color: #eff6ff !important;
            color: #1e40af !important;
            border: 1px solid #bfdbfe !important;
        }

        .badge-soft-warning {
            background-color: #fffbeb !important;
            color: #92400e !important;
            border: 1px solid #fde68a !important;
        }

        .badge-soft-info {
            background-color: #f0fdfa !important;
            color: #0f766e !important;
            border: 1px solid #99f6e4 !important;
        }

        .badge-soft-secondary {
            background-color: #f8fafc !important;
            color: #475569 !important;
            border: 1px solid #e2e8f0 !important;
        }

        /* Additional Action Buttons */
        .btn-rose-primary {
            background-color: #e11d48 !important;
            color: #ffffff !important;
            border: 1px solid #be123c !important;
            border-radius: 0.65rem !important;
            font-weight: 600 !important;
            box-shadow: 0 1px 2px 0 rgba(225, 29, 72, 0.2) !important;
            transition: all 0.15s ease-in-out !important;
        }

        .btn-rose-primary:hover {
            background-color: #be123c !important;
            color: #ffffff !important;
            box-shadow: 0 3px 6px 0 rgba(225, 29, 72, 0.3) !important;
        }

        .btn-rose-primary:active {
            background-color: #9f1239 !important;
        }

        .btn-slate-secondary {
            background-color: #ffffff !important;
            color: #334155 !important;
            border: 1px solid #cbd5e1 !important;
            border-radius: 0.65rem !important;
            font-weight: 600 !important;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04) !important;
            transition: all 0.15s ease-in-out !important;
        }

        .btn-slate-secondary:hover {
            background-color: #f8fafc !important;
            color: #0f172a !important;
            border-color: #94a3b8 !important;
        }

        .btn-slate-secondary:active {
            background-color: #f1f5f9 !important;
        }

        /* Clean Table Header */
        .table-clean thead th {
            background-color: #f8fafc !important;
            color: #64748b !important;
            font-size: 0.72rem !important;
            font-weight: 700 !important;
            text-transform: uppercase !important;
            letter-spacing: 0.05em !important;
            border-bottom: 1px solid #e2e8f0 !important;
            padding: 0.75rem 1rem !important;
        }

        .table-clean tbody td {
            vertical-align: middle !important;
            border-bottom: 1px solid #f1f5f9 !important;
            padding: 0.75rem 1rem !important;
            font-size: 0.84rem !important;
        }

        .table-clean tbody tr:hover td {
            background-color: #fbfcfe !important;
        }

        /* Multi-Pocket Custom Elements */
        .mp-custom-field {
            background-color: #ffffff !important;
            border: 1px solid #e2e8f0 !important;
            color: #0f172a !important;
            font-weight: 500;
            border-radius: 0.75rem;
            padding: 0.45rem 0.75rem;
            font-size: 0.835rem;
            transition: all 0.15s ease-in-out;
        }

        .mp-custom-field:focus {
            background-color: #ffffff !important;
            border-color: #10b981 !important;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18) !important;
            outline: none !important;
            color: #0f172a !important;
        }

        .mp-custom-field::placeholder {
            color: #94a3b8 !important;
            font-weight: 400;
        }

        .mp-custom-label {
            color: #475569 !important;
            font-weight: 700;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.35rem;
            display: block;
        }

        .mp-radio-btn {
            cursor: pointer;
            padding: 0.45rem 0.6rem;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid #e2e8f0;
            border-radius: 0.65rem;
            background: #ffffff;
            color: #475569;
            transition: all 0.15s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
            gap: 0.4rem;
        }

        .mp-radio-btn:hover {
            border-color: #cbd5e1;
            background-color: #f8fafc;
        }

        input[type="radio"]:checked+.mp-radio-btn.in {
            background-color: #ecfdf5 !important;
            color: #065f46 !important;
            border: 2px solid #059669 !important;
            box-shadow: 0 1px 3px rgba(5, 150, 105, 0.2);
        }

        input[type="radio"]:checked+.mp-radio-btn.out {
            background-color: #fff1f2 !important;
            color: #9f1239 !important;
            border: 2px solid #e11d48 !important;
            box-shadow: 0 1px 3px rgba(225, 29, 72, 0.2);
        }

        input[type="radio"]:checked+.mp-radio-btn.transfer {
            background-color: #eff6ff !important;
            color: #1e40af !important;
            border: 2px solid #2563eb !important;
            box-shadow: 0 1px 3px rgba(37, 99, 235, 0.2);
        }

        .btn-pocket-filter {
            color: #64748b;
            border: none;
            background: transparent;
            transition: all 0.2s ease;
        }

        .btn-pocket-filter:hover {
            color: #0f172a;
            background-color: rgba(255, 255, 255, 0.6);
        }

        .btn-pocket-filter.active {
            background-color: #ffffff !important;
            color: #0f172a !important;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
        }

        /* Proyek UI Elements */
        .color-swatch {
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }

        .color-swatch:hover {
            transform: scale(1.15);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        .color-swatch .swatch-check {
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.2s ease;
        }

        .color-radio:checked+.color-swatch {
            transform: scale(1.1);
            box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--swatch-color);
        }

        .color-radio:checked+.color-swatch .swatch-check {
            opacity: 1;
            transform: scale(1);
        }

        .row-proyek-clickable {
            cursor: pointer;
            transition: background-color 0.15s ease-in-out;
        }

        .row-proyek-clickable:hover {
            background-color: rgba(20, 114, 87, 0.05) !important;
        }

        .row-proyek-clickable:hover .row-chevron {
            transform: translateX(3px);
            color: #059669 !important;
            opacity: 1 !important;
        }

        .row-chevron {
            transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
        }

        .proyek-progress-item {
            transition: all 0.2s ease;
        }

        .proyek-progress-item:hover {
            background-color: #f1f5f9 !important;
            border-color: #cbd5e1 !important;
            transform: translateY(-1px);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
        }

        #containerProgressProyek::-webkit-scrollbar {
            width: 4px;
        }

        #containerProgressProyek::-webkit-scrollbar-thumb {
            background-color: #cbd5e1;
            border-radius: 4px;
        }

        #containerProgressProyek::-webkit-scrollbar-track {
            background-color: transparent;
        }

        /* Custom Month & Date Picker: Clean tanpa icon kalender, seluruh kotak bisa diklik */
        .input-month-clean,
        .input-no-calendar {
            position: relative;
            cursor: pointer !important;
        }

        .input-month-clean::-webkit-calendar-picker-indicator,
        .input-no-calendar::-webkit-calendar-picker-indicator {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer !important;
        }

        .input-month-clean::-webkit-inner-spin-button,
        .input-no-calendar::-webkit-inner-spin-button {
            display: none;
            -webkit-appearance: none;
        }