/* Screen-specific styles for Supplier_Payment_Dashboard_Screen */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f9fafb;
            color: black;
        }
        
        .material-symbols-rounded {
            font-variation-settings:
            'FILL' 0,
            'wght' 400,
            'GRAD' 0,
            'opsz' 24;
            vertical-align: middle;
        }
        
        .payment-card {
            transition: transform 0.2s ease;
        }
        
        .payment-card:active {
            transform: scale(0.98);
        }
        
        .circle-chart {
            width: 140px;
            height: 140px;
            position: relative;
        }
        
        .donut-chart {
            transform: rotate(-90deg);
            transform-origin: 50% 50%;
        }
        
        .chart-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }
        
        .tab-indicator {
            position: relative;
        }
        
        .tab-indicator::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #f97316;
            border-radius: 1px;
        }
