/* Screen-specific styles for Nutritional_Information_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;
        }
        
        .nutrition-progress {
            height: 6px;
            border-radius: 3px;
            background-color: #e5e7eb;
            position: relative;
        }
        
        .nutrition-progress-bar {
            position: absolute;
            height: 100%;
            border-radius: 3px;
            left: 0;
            top: 0;
        }
        
        .meal-card {
            transition: transform 0.2s ease;
        }
        
        .meal-card:active {
            transform: scale(0.98);
        }
        
        .tab-active {
            border-bottom: 2px solid #f97316;
            color: #f97316;
        }
