
        .chart-container {
            max-width: 800px;
            margin: 0 auto;
            background: transparent;
        }

        .header {
            background: transparent;
            color: #333;
            padding: 20px 0;
            text-align: center;
        }

        .header h1 {
            font-size: 28px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .header p {
            font-size: 16px;
            opacity: 0.9;
        }

        .chart-wrapper {
            padding: 40px;
            position: relative;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cg fill='%2359A644' fill-opacity='0.08'%3E%3Ctext x='100' y='60' text-anchor='middle' font-size='24' font-family='Arial, sans-serif' font-weight='bold'%3E🌱 GreenDays%3C/text%3E%3Ctext x='100' y='85' text-anchor='middle' font-size='16' font-family='Arial, sans-serif'%3EGreenDays.co.il%3C/text%3E%3Ctext x='100' y='130' text-anchor='middle' font-size='18' font-family='Arial, sans-serif'%3E☀️ סולארי%3C/text%3E%3C/g%3E%3C/svg%3E");
            background-repeat: repeat;
            background-position: center;
        }

        .chart {
            display: flex;
            align-items: end;
            justify-content: space-around;
            height: 500px;
            margin: 30px 0;
            position: relative;
        }

        .bar-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            transition: transform 0.2s ease;
        }

        .bar-container:hover {
            transform: translateY(-2px);
        }

        .bar {
            width: 80px;
            background: linear-gradient(180deg, #59A644 0%, #1B9967 100%);
            border-radius: 8px 8px 0 0;
            position: relative;
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(89, 166, 68, 0.3);
            transition: all 0.2s ease;
            animation: growUp 0.6s ease-out;
        }

        .bar-container:hover .bar {
            box-shadow: 0 6px 20px rgba(89, 166, 68, 0.4);
            transform: scale(1.02);
        }

        @keyframes growUp {
            from {
                height: 0;
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .value-label {
            position: absolute;
            top: -35px;
            left: 50%;
            transform: translateX(-50%);
            background: #1B9967;
            color: white;
            padding: 6px 12px;
            border-radius: 15px;
            font-weight: bold;
            font-size: 14px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            opacity: 1;
            transition: all 0.2s ease;
        }

        .hover-info {
            position: absolute;
            top: -95px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.95);
            color: #333;
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 12px;
            white-space: pre-line;
            text-align: center;
            opacity: 0;
            transition: opacity 0.2s ease;
            z-index: 10;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            line-height: 1.4;
            min-width: 100px;
            border: 1px solid #ddd;
        }

        .legend {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin: 20px 0;
            padding: 15px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            border: 1px solid #E0E0E0;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #333;
        }

        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 3px;
        }

        .growth-indicator {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-weight: bold;
        }

        .growth-box {
            width: 12px;
            height: 12px;
            border-radius: 2px;
            display: inline-block;
        }

        .bar-container:hover .hover-info {
            opacity: 1;
        }

        .year-label {
            font-size: 18px;
            font-weight: 600;
            color: #1B9967;
            margin-top: 10px;
        }

        .year-2024 {
            color: #FF6B35;
        }

        .stats-section {
            background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
            padding: 30px;
            margin-top: 20px;
            border-radius: 15px;
            border-right: 5px solid #59A644;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .stat-card {
            background: white;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border-top: 3px solid #59A644;
        }

        .stat-number {
            font-size: 24px;
            font-weight: bold;
            color: #1B9967;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 14px;
            color: #666;
        }

        .growth-indicator {
            display: inline-flex;
            align-items: center;
            background: #E8F5E9;
            color: #2E7D32;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: bold;
            margin-right: 10px;
        }

        .footer-note {
            text-align: center;
            color: #666;
            font-size: 12px;
            margin-top: 20px;
            font-style: italic;
        }

        .logo-area {
            text-align: center;
            margin-top: 20px;
            padding: 15px;
            background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
            color: white;
            border-radius: 10px;
        }

        .logo-text {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .logo-url {
            font-size: 14px;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .chart-wrapper {
                padding: 20px;
            }
            
            .bar {
                width: 60px;
            }
            
            .header h1 {
                font-size: 24px;
            }
        }






        
        .forecast-chart-container {
            max-width: 900px;
            margin: 0 auto;
            background: transparent;
        }

        .forecast-header {
            background: transparent;
            color: #333;
            padding: 20px 0;
            text-align: center;
        }

        .forecast-header h1 {
            font-size: 28px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .forecast-header p {
            font-size: 16px;
            opacity: 0.9;
        }

        .forecast-chart-wrapper {
            padding: 40px;
            position: relative;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cg fill='%2359A644' fill-opacity='0.08'%3E%3Ctext x='100' y='60' text-anchor='middle' font-size='24' font-family='Arial, sans-serif' font-weight='bold'%3E🌱 GreenDays%3C/text%3E%3Ctext x='100' y='85' text-anchor='middle' font-size='16' font-family='Arial, sans-serif'%3EGreenDays.co.il%3C/text%3E%3Ctext x='100' y='130' text-anchor='middle' font-size='18' font-family='Arial, sans-serif'%3E☀️ סולארי%3C/text%3E%3C/g%3E%3C/svg%3E");
            background-repeat: repeat;
            background-position: center;
        }

        .forecast-chart-svg {
            width: 100%;
            height: 450px;
            border-radius: 10px;
            background: transparent;
        }

        .forecast-legend {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 20px 0;
            padding: 15px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            border: 1px solid #E0E0E0;
        }

        .forecast-legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            color: #333;
            font-weight: 600;
        }

        .forecast-legend-line {
            width: 30px;
            height: 4px;
            border-radius: 2px;
        }

        .forecast-legend-circle {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .forecast-stats-section {
            background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
            padding: 30px;
            margin-top: 20px;
            border-radius: 15px;
            border-right: 5px solid #59A644;
        }

        .forecast-summary-text {
            font-size: 18px;
            color: #1B9967;
            font-weight: 600;
            text-align: center;
            line-height: 1.6;
        }

        .forecast-footer-note {
            text-align: center;
            color: #666;
            font-size: 12px;
            margin-top: 20px;
            font-style: italic;
        }

        @media (max-width: 768px) {
            .chart-wrapper {
                padding: 20px;
            }
            
            .header h1 {
                font-size: 24px;
            }

            .legend {
                flex-direction: column;
                gap: 15px;
            }
        }