/* Screen-specific styles for Kitchen_Orders_Dashboard_Screen */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            height: 100vh;
            width: 100%;
            overflow-x: hidden;
        }
        
        .screen {
            height: 100%;
            overflow-y: auto;
        }
        
        .content {
            padding-bottom: 80px;
        }
        
        /* Fix for bottom navigation */
        .bottom-navigation {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            border-top: 1px solid #f1f1f1;
            padding: 12px 24px;
            border-top-left-radius: 24px;
            border-top-right-radius: 24px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
            z-index: 100;
        }
        
        .progress-circle {
            position: relative;
            width: 40px;
            height: 40px;
        }
        
        .progress-circle svg {
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }
        
        .progress-circle circle {
            fill: none;
            stroke-width: 4;
            stroke-linecap: round;
        }
        
        .progress-circle .bg {
            stroke: #f3f4f6;
        }
        
        .progress-circle .progress {
            stroke: currentColor;
            transition: stroke-dashoffset 0.5s;
        }
        
        .timer-display {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 9px;
            font-weight: 600;
        }
