
        p {
             font-family: Arial;
             margin-top: 0;
             margin-bottom: 0;
        }

        a {
            text-decoration: none;   
            font-family: Arial, sans-serif; 
            transition: color 0.3s;  
        }

        body {
             margin: 0;
             background-color: #F6F0D7;
             min-height: 100vh;
             display: flex;
             flex-direction: column;
        }
        .header {
            height: 100px;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            background-color: #F0E491;
            border-bottom-width: 1px ;
            border-bottom-style: solid;
            border-bottom-color: rgb(228, 228, 228);
            z-index: 100;
            margin-bottom: 30px;
        }
        .left-section {
            display: flex;
            align-items: center;
        }
        .right-section {
            width: 180px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-right: 20px;
            flex-shrink: 0;
        }
        .leaf-icon {
            height: 40px;
            margin-left: 24px;
            margin-right: 24px;
        }
        .website-name {
            margin-top: 10px;
            font-size: 30px;
            color:#658C58;
            font-weight: bold;
            line-height: 20px;
            margin-bottom: 10px;
        }
        .information-button, .sensor-button {
            background-color: #658C58;
            color: white;
            border-radius: 5px;
            border: none;
            font-size: 16px;
            margin-left: 5px;
            margin-top: 10px;
            padding-left: 10px;
            padding-right: 10px;
            padding-top: 10px;
            padding-bottom: 10px;
            vertical-align: middle;
        }
        .information-button:hover, .sensor-button:hover {
            background-color: #BBC863;
        }

        .main {
            flex: 1;
        }

        .chart {
            width: 1600px;
            height: 800px;
        }

        .chart-container {
            display: flex;             
            justify-content: center;   
            align-items: center;       
            margin: 0 auto;           
            width: 80%;               
            max-width: 1600px;
            margin-top: 10px;        
        }

        .text {
            font-family: Arial;
            display: flex;             
            justify-content: center;    
            align-items: center;        
            height: 20px;              
            text-align: center;
            margin-top: 120px;       
        }

        .info-container, .project-container {
            display: flex;
            align-items: flex-start; 
            gap: 20px; 
            background-color: #ffffff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            min-height: 260px;
            max-width: 1600px;
            margin: auto;
            margin-bottom: 10px;
        }
        .value-container {
            background-color: #ffffff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            max-height: 130px;
            max-width: 800px;
            margin: auto;
            margin-bottom: 10px;
        }

        .info-text {
            font-family: Arial;
            flex: 1;
            line-height: 1.6;
            color: #333333;
        }

        .feuchtigkeitssensor, .cgr-logo {
            max-width: 250px;
            border-radius: 8px;
            object-fit: cover;
        }

        .warning-moist, .warning-arid {
            font-family: Arial;
            display: none;
            background-color: #ffffff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            max-height: 130px;
            max-width: 800px;
            margin: auto;
            margin-bottom: 10px;
        }

    

       


     
      
