        body {
            background-color: #f4f4f4;
            color: #333;
        }
        .eco-green {
            color: #2e7d32;
        }
        .header-section {
            background-color: #e8f5e9;
            padding: 20px;
            border-radius: 5px;
        }
        .chart-container, .table-container {
            max-width: 50%;
            margin-left: 0;
            padding-left: 0;
        }
        .light-blue {
            color: #29b6f6;
        }
        .light-blue-bg {
            background-color: #e1f5fe;
        }
        .footer {
            background-color: #2e7d32; /* Dunkelgrün */
            color: #fff; /* Weiß */
            padding: 20px 0;
            border-top: 2px solid #e8f5e9; /* Hellerer Grünton */
        }
        .footer a {
            color: #fff;
            text-decoration: none;
        }
        .footer a:hover {
            text-decoration: underline;
        }
		
        .icon-sun {
            color: gold;
            display: inline-block;
            font-size: 24px;
            margin-right: 5px;
        }

        .icon-battery {
            color: #4caf50;
            display: inline-block;
            font-size: 24px;
            margin-right: 5px;
        }

        .data-display {
            font-size: 18px;
            display: flex;
            align-items: center;
			margin-bottom: 10px;
        }
		
        .data-box {
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-bottom: 20px;
        }

        .progress {
            height: 20px;
            margin-bottom: 10px; /* Abstand unter der Progress Bar */
        }

        .progress-bar {
            background-color: #dcbf1f; /* Gelb für die PV-Produktion */
			color: #000;
        }
		

        .progress-bar-akku {
            background-color: #4caf50; /* Grün für den Akkustand */
			color: #fff;
        }

        .icon {
            display: inline-block;
            font-size: 24px;
            margin-right: 5px;
        }

        .data-description {
            font-size: 14px;
            color: #666;
        }
		
		.btn-circle {
        width: 25px;
        height: 25px;
        padding: 4px 0px;
        border-radius: 15px;
        text-align: center;
        font-size: 12px;
        line-height: 1.42857;
   		}
		
		
		.price-table {
			font-size: 0.8rem; /* Kleinere Schrift */
		}

		.price-table td, .price-table th {
			padding: 0.3rem; /* Weniger Padding */
		}

		.price-low { /* Grün für Preise unter 20 Cent */
			background-color: #d4edda;
		}
		
		.price-medium { /* Gelb-Orange für Preise zwischen 20 und 32 Cent */
        background-color: #ffcc80;
   		}

		.price-high { /* Rot für Preise über 32 Cent */
			background-color: #f8d7da;
		}