  body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 15px;
        /*    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%); */
		    background: white;
            color: #2c5530;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .header {
            background: linear-gradient(135deg, #4CAF50 0%, #2c5530 100%);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .header h1 {
            margin: 0 0 10px 0;
            font-size: 24px;
            font-weight: bold;
        }
        
        .header p {
            margin: 0;
            opacity: 0.9;
            font-size: 14px;
        }
        
        .chart-container {
            padding: 20px;
            position: relative;
            height: 400px;
        }
        
        .stats {
            display: flex;
            justify-content: space-around;
            padding: 20px;
            background: #f8f9fa;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .stat-box {
            text-align: center;
            padding: 15px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            flex: 1;
            min-width: 150px;
        }
        
        .stat-value {
            font-size: 20px;
            font-weight: bold;
            color: #4CAF50;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 12px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .info {
            padding: 20px;
            background: #e8f4f8;
            font-size: 13px;
            color: #555;
            line-height: 1.4;
        }
        
        .error {
            padding: 20px;
            background: #ffe8e8;
            color: #cc0000;
            text-align: center;
            font-weight: bold;
        }
        
        .footer {
            padding: 15px 20px;
            background: #f8f9fa;
            text-align: center;
            font-size: 11px;
            color: #888;
            border-top: 1px solid #eee;
        }
        
        .footer a {
            color: #4CAF50;
            text-decoration: none;
        }
        		
		.acceleration-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 10px;
            padding: 20px;
            background: #f8f9fa;
        }
        
        .acceleration-box {
            text-align: center;
            padding: 12px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border-left: 4px solid #4CAF50;
        }
        
        .acceleration-box.high-rate {
            border-left-color: #FF6B6B;
        }
        
        .acceleration-year {
            font-size: 13px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .acceleration-value {
            font-size: 18px;
            font-weight: bold;
            color: #4CAF50;
            font-family: 'Courier New', monospace;
        }
        
        .acceleration-box.high-rate .acceleration-value {
            color: #FF6B6B;
        }
        
        .acceleration-label {
            font-size: 10px;
            color: #999;
            margin-top: 3px;
        }		
		
        /* Mobil optimalizálás */
        @media (max-width: 768px) {
            body {
                padding: 5px;
            }
            
            .header h1 {
                font-size: 20px;
            }
            
            .chart-container {
                height: 300px;
                padding: 15px;
            }
            
            .stats {
                flex-direction: column;
            }
            
            .stat-box {
                min-width: auto;
            }
        }