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