/* Screen-specific styles for Kitchen_Preparation_Timeline_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;
        }
        
        .prep-card {
            transition: transform 0.2s ease;
        }
        
        .prep-card:active {
            transform: scale(0.98);
        }
        
        .tab-indicator {
            position: relative;
        }
        
        .tab-indicator::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #f97316;
            border-radius: 1px;
        }
        
        .timeline {
            position: relative;
            padding-left: 28px;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 9px;
            width: 2px;
            background-color: #e5e7eb;
        }
        
        .timeline-dot {
            position: absolute;
            left: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: white;
            border: 2px solid;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }
        
        .timeline-item:last-child .timeline::before {
            bottom: calc(100% - 10px);
        }
        
        .progress-circle {
            width: 40px;
            height: 40px;
            position: relative;
        }
        
        .progress-ring {
            transform: rotate(-90deg);
            transform-origin: 50% 50%;
        }
        
        .progress-ring-circle {
            fill: transparent;
            stroke-width: 4;
            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;
        }
