/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 03 2026 | 08:07:00 */
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
/*        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(to bottom, #e0f2fe, #dcfce7);
            overflow: hidden;
        }*/
        
        #header {
            background: linear-gradient(to right, #15803d, #16a34a);
            color: white;
            padding: 1rem 2rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        #header h1 {
            font-size: 1.5rem;
            margin-bottom: 0.25rem;
        }
        
        #header p {
            font-size: 0.875rem;
            opacity: 0.9;
        }
        
        #container {
            display: flex;
            height: calc(100vh - 100px);
            padding: 1rem;
            gap: 1rem;
        }
        
        #canvas-container {
            flex: 1;
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }
        
        #canvas {
            width: 100%;
            height: 100%;
            display: block;
        }
        
        #legend {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255,255,255,0.95);
            padding: 1rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            font-size: 0.75rem;
        }
        
        #legend h4 {
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0.25rem 0;
        }
        
        .legend-color {
            width: 1rem;
            height: 1rem;
            border-radius: 50%;
        }
        
        #info-overlay {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(255,255,255,0.95);
            padding: 1rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            max-width: 20rem;
            font-size: 0.875rem;
            display: none;
        }
        
        #info-overlay.visible {
            display: block;
        }
        
        #info-overlay h3 {
            color: #15803d;
            margin-bottom: 0.5rem;
        }
        
        #info-overlay ul {
            list-style: none;
            padding-left: 0;
        }
        
        #info-overlay li {
            margin: 0.25rem 0;
            color: #374151;
        }
        
        #controls {
            width: 20rem;
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            padding: 1.5rem;
            overflow-y: auto;
        }
        
        .control-section {
            margin-bottom: 1.5rem;
        }
        
        .control-section h3 {
            color: #15803d;
            font-size: 1.125rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        button {
            width: 100%;
            padding: 0.75rem;
            margin-bottom: 0.5rem;
            border: none;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .btn-primary {
            background: #16a34a;
            color: white;
        }
        
        .btn-primary:hover {
            background: #15803d;
        }
        
        .btn-secondary {
            background: #4b5563;
            color: white;
        }
        
        .btn-secondary:hover {
            background: #374151;
        }
        
        .btn-info {
            background: #2563eb;
            color: white;
        }
        
        .btn-info:hover {
            background: #1d4ed8;
        }
        
        .slider-group {
            margin-bottom: 1rem;
        }
        
        .slider-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
        }
        
        .slider-group input[type="range"] {
            width: 100%;
            margin-bottom: 0.25rem;
        }
        
        .slider-labels {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            color: #6b7280;
        }
        
        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0.5rem 0;
            cursor: pointer;
        }
        
        .checkbox-group input[type="checkbox"] {
            width: 1rem;
            height: 1rem;
            cursor: pointer;
        }
        
        #flux-display {
            background: linear-gradient(135deg, #f0fdf4, #dbeafe);
            padding: 1rem;
            border-radius: 0.5rem;
            border: 2px solid #bbf7d0;
        }
        
        .flux-card {
            background: white;
            padding: 0.75rem;
            border-radius: 0.5rem;
            margin: 0.5rem 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .flux-label {
            font-size: 0.875rem;
            color: #6b7280;
        }
        
        .flux-value {
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0.25rem 0;
        }
        
        .flux-unit {
            font-size: 0.75rem;
            color: #9ca3af;
        }
        
        .info-box {
            background: #fef3c7;
            padding: 0.5rem;
            border-radius: 0.5rem;
            font-size: 0.75rem;
            margin-top: 0.5rem;
        }
        
        .process-list {
            background: #f9fafb;
            padding: 0.75rem;
            border-radius: 0.5rem;
            font-size: 0.75rem;
        }
        
        .process-list h4 {
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        
        .process-list ul {
            list-style: none;
            padding-left: 0;
        }
        
        .process-list li {
            margin: 0.25rem 0;
            color: #374151;
        }
        
        .chart-section {
            margin-bottom: 1.5rem;
        }
        
        .chart-container {
            background: white;
            padding: 1rem;
            border-radius: 0.5rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-bottom: 1rem;
        }
        
        .chart-container h4 {
            font-size: 0.875rem;
            font-weight: bold;
            margin-bottom: 0.75rem;
            color: #374151;
        }
        
        .chart-container canvas {
            max-height: 200px;
        }
        
        .tabs {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .tab {
            flex: 1;
            padding: 0.5rem;
            border: none;
            background: #e5e7eb;
            color: #374151;
            border-radius: 0.5rem;
            cursor: pointer;
            font-size: 0.875rem;
            transition: all 0.2s;
        }
        
        .tab.active {
            background: #15803d;
            color: white;
        }
        
        .tab:hover {
            background: #16a34a;
            color: white;
        }
        
        .chart-panel {
            display: none;
        }
        
        .chart-panel.active {
            display: block;
        }