 
        /* ==========================================
               ULTRA PREMIUM CUSTOM CSS (Responsive & Modern)
               ========================================== */
        :root {
            --pca-primary: #4f46e5;
            --pca-dark: #0f172a;
            --pca-gray: #64748b;
            --pca-bg: #f8fafc;
        }

        body {
            background-color: var(--pca-bg) !important;
        }

        /* Mesmerizing Background */
        .pca-track-wrapper {
            background-color: #f1f5f9;
            background-image: radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 0.05) 0, transparent 50%),
                radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 0.05) 0, transparent 50%),
                radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 0.05) 0, transparent 50%);
            min-height: 80vh;
            position: relative;
            z-index: 1;
        }

        /* Glass Search Panel */
        .pca-glass-panel {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 28px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.06);
        }

        .pca-floating-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--pca-primary), #3b82f6);
            color: white;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 24px;
            box-shadow: 0 15px 30px -5px rgba(79, 70, 229, 0.4);
            transform: rotate(-3deg);
        }

        /* Modern Search Input */
        .pca-search-wrapper {
            background: #ffffff;
            border-radius: 60px;
            padding: 8px 8px 8px 24px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .pca-search-wrapper:focus-within {
            box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
            border-color: #cbd5e1;
        }

        .pca-search-input {
            border: none;
            background: transparent;
            padding: 15px 15px 15px 15px;
            width: 100%;
            font-size: 17px;
            font-weight: 600;
            color: var(--pca-dark);
            outline: none;
        }

        .pca-btn-search {
            background: var(--pca-dark);
            color: white;
            border-radius: 50px;
            padding: 16px 36px;
            font-weight: 700;
            border: none;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .pca-btn-search:hover {
            background: var(--pca-primary);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
        }

        /* Result Card Masterpiece */
        .pca-result-card {
            animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            border: 1px solid #f1f5f9;
        }

        /* Grouped Fee Section UI */
        .pca-fee-group {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            margin-bottom: 16px;
            overflow: hidden;
        }

        .pca-fee-group-header {
            background: #f1f5f9;
            padding: 12px 20px;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #475569;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            justify-content: space-between;
        }

        .pca-fee-item {
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #f1f5f9;
            transition: background 0.2s;
        }

        .pca-fee-item:last-child {
            border-bottom: none;
        }

        .pca-fee-item:hover {
            background: #ffffff;
        }

        .pca-fee-title {
            font-weight: 700;
            color: #1e293b;
            font-size: 15px;
            margin-bottom: 4px;
        }

        .pca-fee-meta {
            font-size: 12px;
            color: #64748b;
            font-weight: 500;
        }

        .pca-fee-amount {
            font-weight: 800;
            font-size: 16px;
            color: #0f172a;
            text-align: right;
        }

        /* Grand Total Box */
        .pca-grand-total-box {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            border-radius: 20px;
            padding: 24px;
            color: white;
            box-shadow: 0 15px 30px -10px rgba(15, 23, 42, 0.5);
            position: relative;
            overflow: hidden;
        }

        .pca-grand-total-box::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(79, 70, 229, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
            border-radius: 50%;
        }

        /* Batch Info Ticket */
        .pca-batch-ticket {
            background: #eff6ff;
            border: 1px dashed #bfdbfe;
            border-radius: 12px;
            padding: 16px;
            position: relative;
        }

        .pca-batch-ticket::after,
        .pca-batch-ticket::before {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
        }

        .pca-batch-ticket::before {
            left: -10px;
            border-right: 1px dashed #bfdbfe;
        }

        .pca-batch-ticket::after {
            right: -10px;
            border-left: 1px dashed #bfdbfe;
        }

        /* Animations */
        @keyframes slideUpFade {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Mobile Layout */
        @media (max-width: 767px) {
            .pca-search-wrapper {
                flex-direction: column;
                background: transparent;
                border: none;
                box-shadow: none;
                padding: 0;
            }

            .pca-search-wrapper>i {
                display: none;
            }

            /* Hide inner icon */
            .pca-search-input {
                background: white;
                border-radius: 50px;
                padding: 18px 24px;
                margin-bottom: 12px;
                border: 1px solid #e2e8f0;
                text-align: center;
            }

            .pca-btn-search {
                width: 100%;
                padding: 18px;
                border-radius: 50px;
                font-size: 16px;
            }

            .pca-card-header {
                flex-direction: column;
                text-align: center;
                gap: 16px;
                padding: 24px 20px;
            }

            .pca-card-header>div:last-child {
                width: 100%;
                text-align: center !important;
            }

            .pca-fee-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .pca-fee-amount {
                text-align: left;
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
                border-top: 1px dashed #e2e8f0;
                padding-top: 10px;
                mt-2;
            }

            .pca-col-divider {
                border-right: none;
                border-bottom: 1px solid #f1f5f9;
                padding-bottom: 30px;
                margin-bottom: 30px;
            }
        }

        @media (min-width: 768px) {
            .pca-col-divider {
                border-right: 1px solid #f1f5f9;
                padding-right: 40px;
            }

            .pca-col-ps {
                padding-left: 40px;
            }
        }

.bg-green-50 {
    background: #f0fdf4 !important;
}

.text-green-700 {
    color: #15803d !important;
    font-weight: 500 !important;
}

.border-green-200 {
    border: 1px solid #bbf7d0 !important;
}

.bg-emerald-50 {
    background: #ecfdf5;
}

.text-emerald-700 {
    color: #047857;
    font-weight: 500;
}

.border-emerald-200 {
    border: 1px solid #a7f3d0;
}

.bg-amber-50 {
    background: #fffbeb;
}

.text-amber-700 {
    color: #b45309;
    font-weight: 500;
}

.border-amber-200 {
    border: 1px solid #fde68a;
}

.bg-red-50 {
    background: #fef2f2;
}

.text-red-700 {
    color: #b91c1c;
    font-weight: 500;
}

.border-red-200 {
    border: 1px solid #fecaca;
}
