        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
        }

        .input-row {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        .input-container {
            display: flex;
            flex-direction: column;
        }

        label {
            text-align: left;
        }

        input {
            padding: 12px 20px;
            margin: 8px 0;
            box-sizing: border-box;
        }
        select {
            padding: 12px 20px;
            margin: 8px 0;
            box-sizing: border-box;
        }
        button[type=submit] {
            background-color: #04AA6D;
            border: none;
            color: white;
            padding: 25px 32px;
            text-decoration: none;
            margin: 4px 2px;
            cursor: pointer;
            font-weight: bold;
        }

        .main-container {
            display: flex;
            flex-direction: column;
            height: 100vh;
        }
        #form-container {
            flex: 0 0 auto; /* Ne pas se développer ni se contracter, taille automatique */
            width: 100%;
            overflow-y: auto;
            text-align: center;
        }
        .sub-container {
            display: flex;
            flex: 1; /* Prendre l'espace restant */
            overflow: hidden; /* Pour éviter les débordements */
        }
        #table-container {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
        }
        #map-container {
            flex: 1;
            height: 100%;
        }
        #map {
            height: 100%;
            width: 100%;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-family: Arial, sans-serif;
            margin-top: 20px;
        }

        th, td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: center;
        }

        th {
            background-color: #f2f2f2;
            font-weight: bold;
        }

        tr:nth-child(even) {
            background-color: #f9f9f9;
        }
         /* Mettre en évidence la ligne survolée */
        tr:hover {
            background-color: #e0e0e0;
        }
        .highlight {
            background-color: #b3d9ff;
        }
        .dpe-circle, .ges-circle {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: inline-block;
            text-align: center;
            line-height: 25px;
            color: black;
            font-weight: bold;
            border: 1px solid gray;
        }

        /* Couleurs pour DPE */
        .dpe-A { background-color: #008000; } /* Vert */
        .dpe-B { background-color: #00A300; }
        .dpe-C { background-color: #80FF00; }
        .dpe-D { background-color: #FFFF00; } /* Jaune */
        .dpe-E { background-color: #FFBF00; }
        .dpe-F { background-color: #FF8000; } /* Orange */
        .dpe-G { background-color: #FF0000; } /* Rouge */

        /* Couleurs pour GES */
        .ges-A { background-color: #FCF0F4; }
        .ges-B { background-color: #D9C1DB; }
        .ges-C { background-color: #C6A8CC; }
        .ges-D { background-color: #9E75AF; } 
        .ges-E { background-color: #82599B; }
        .ges-F { background-color: #67418C; } 
        .ges-G { background-color: #FFFFFF; } 
