  body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 15px;
        /*    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%); */
		    background: white;
          /*  color: #2c5530; */
			color: #2c4855;
			
        }
        
        .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%); */
			background: linear-gradient(135deg, #4c90af 0%, #2c4955 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: #2d647b;
            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: #2d647b;
            text-decoration: none;
        }
        
        /* 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;
            }
        }