.source-summary-card {
            border: 1px solid rgba(148, 163, 184, 0.4);
            border-radius: 1.25rem;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 246, 255, 0.8));
            padding: 1rem;
            box-shadow: 0 10px 35px -25px rgba(15, 23, 42, 0.8);
            transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .source-summary-card:hover {
            transform: translateY(-4px);
            border-color: rgba(59, 130, 246, 0.5);
            box-shadow: 0 15px 45px -25px rgba(15, 23, 42, 0.7);
        }
        .source-summary-card .badge {
            font-size: 10px;
            padding: 0.15rem 0.75rem;
            border-radius: 999px;
            background: rgba(59, 130, 246, 0.1);
            color: #1d4ed8;
        }
        .source-highlight-card {
            border-radius: 1.25rem;
            padding: 1.25rem;
            background: linear-gradient(150deg, rgba(16, 185, 129, 0.15), rgba(59, 130, 246, 0.05));
            border: 1px solid rgba(59, 130, 246, 0.15);
            box-shadow: 0 10px 30px -20px rgba(15, 23, 42, 0.9);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
        }
        .source-highlight-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 40px -30px rgba(15, 23, 42, 0.9);
        }
        .source-highlight-card .detail {
            color: #475569;
            margin-top: 0.35rem;
            font-size: 0.8rem;
        }
        .flow-highlight-card {
            border-radius: 1.5rem;
            padding: 1.25rem;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.1));
            border: 1px solid rgba(14, 165, 233, 0.2);
            box-shadow: 0 20px 40px -30px rgba(15, 23, 42, 0.9);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
        }
        .flow-highlight-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 25px 50px -30px rgba(15, 23, 42, 0.95);
        }
        .flow-highlight-card .label {
            font-size: 0.75rem;
            letter-spacing: 0.35em;
            color: #2563eb;
            text-transform: uppercase;
        }
        .flow-highlight-card .value {
            font-size: 2.25rem;
            font-weight: 700;
        }
        .flow-highlight-card .detail {
            color: #475569;
            margin-top: 0.35rem;
            font-size: 0.85rem;
        }
        .flow-summary-card {
            border-radius: 1.25rem;
            border: 1px solid rgba(148, 163, 184, 0.35);
            background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
            padding: 1rem;
            box-shadow: 0 20px 40px -35px rgba(15, 23, 42, 0.9);
            transition: transform 0.2s ease, border-color 0.2s ease;
            text-align: center;
            cursor: pointer;
        }
        .flow-summary-card:hover {
            transform: translateY(-3px);
            border-color: rgba(59, 130, 246, 0.6);
        }
        .flow-summary-card .title {
            font-size: 0.65rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: #64748b;
        }
        .flow-summary-card .value {
            font-size: 2rem;
            font-weight: 700;
            color: #0f172a;
            margin: 0.25rem 0;
        }
        .flow-summary-card .share {
            font-size: 0.85rem;
            color: #475569;
        }

        .dashboard-widget-card {
            background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.96));
            border: 1px solid rgba(148,163,184,0.25);
            box-shadow: 0 22px 45px -30px rgba(15,23,42,0.8);
            transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
            cursor: pointer;
        }
        .dashboard-widget-card:hover {
            transform: translateY(-4px);
            border-color: rgba(59,130,246,0.35);
            box-shadow: 0 25px 50px -28px rgba(15,23,42,0.85);
        }

        .dashboard-chart-card {
            background: #ffffff;
            border: 1px solid rgba(148,163,184,0.25);
            border-radius: 1.75rem;
            box-shadow: 0 20px 45px -30px rgba(15,23,42,0.12);
            padding: 1.5rem;
        }

        .dashboard-legend-card {
            background: #f8fafc;
            border: 1px solid rgba(148,163,184,0.18);
            border-radius: 1.25rem;
            padding: 1rem;
            box-shadow: inset 0 1px 2px rgba(15,23,42,0.04);
        }

        .dashboard-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.45rem 0.95rem;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }

        .dashboard-pill-blue { background: rgba(59,130,246,0.12); color: #1d4ed8; }
        .dashboard-pill-green { background: rgba(16,185,129,0.12); color: #047857; }
        .dashboard-pill-red { background: rgba(239,68,68,0.12); color: #b91c1c; }
        .dashboard-pill-purple { background: rgba(168,85,247,0.12); color: #6d28d9; }
        .dashboard-pill-amber { background: rgba(251,191,36,0.12); color: #b45309; }

        .dashboard-table-row:hover { background: #f8fafc; }
