/* Screen-specific styles for Ingredient_Traceability_Dashboard */
        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;
        }
        
        .status-badge {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
        }
        
        .timeline-line {
            width: 2px;
            background-color: #e5e7eb;
            position: absolute;
            top: 25px;
            bottom: 0;
            left: 14px;
            z-index: 0;
        }
        
        .timeline-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #f97316;
            position: relative;
            z-index: 1;
            margin-top: 6px;
        }
        
        .timeline-dot.completed {
            background-color: #10b981;
        }
        
        .ingredient-card {
            transition: transform 0.2s ease;
        }
        
        .ingredient-card:active {
            transform: scale(0.98);
        }
