/* Screen-specific styles for Supplier_Quality_Reporting_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;
        }
        
        .quality-card {
            transition: transform 0.2s ease;
        }
        
        .quality-card:active {
            transform: scale(0.98);
        }
        
        .progress-circle {
            position: relative;
            width: 60px;
            height: 60px;
        }
        
        .progress-ring {
            transform: rotate(-90deg);
            transform-origin: 50% 50%;
        }
        
        .progress-ring-circle {
            fill: transparent;
            stroke-width: 6;
            stroke-linecap: round;
        }
        
        .progress-ring-bg {
            stroke: #e5e7eb;
        }
        
        .progress-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .bar-chart {
            height: 150px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
        }
        
        .bar-column {
            width: 25px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .bar {
            width: 100%;
            border-radius: 4px 4px 0 0;
        }
