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

        .geocreditsline {
            display: flex;
            margin: 0 auto;
            width: 220px;
        }

        .banner {
            padding: 0 !important;
        }

        .mycred-nav-balance{
            font-size: 460%;
            line-height: 80%;
            color: #011C3A;
        }

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

        label {
            text-align: left;
            font-size: 80%;
        }

        input {
            padding: 12px 10px !important;
            margin: 0px 0 !important;
            box-sizing: border-box !important;
        }
        input {
            background-color: var(--memberlite-color-white);
            border: 1px solid var(--memberlite-color-borders);
            border-radius: 8px;
            box-shadow: none;
            color: var(--memberlite-color-text);
            font-size: 16px;
            height: auto;
            line-height: 1.5;
            min-height: auto;
            outline: none;
            word-break: normal;
        }
        input[type=number]{
            max-width: 80px;
        }
        input[type=text]{
            max-width: 140px;
        }
        select {
            padding: 12px 10px !important;
            margin: 0px 0 !important;
            box-sizing: border-box !important;
        }
        button[type=submit] {

            padding: 21px 32px;
            margin: 4px 2px;
            cursor: pointer;
        }

        .main-container {
            display: flex;
            flex-direction: column;
            height: 130vh;
        }
        #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: 0px;
            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: 0px;
            font-size: 80%;
        }

        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; } 

        @media (max-device-width:768px) and (orientation: portrait) {
            table {
                font-size: 50%;
            }
            thead th{
                writing-mode: sideways-lr;
                text-orientation: mixed;
            }
            .tdvertmob{
                writing-mode: sideways-lr;
                text-orientation: mixed;
            }
            .main-container {
                height:200vh;
            }
            #map-container {
                display: none;
            }
            
        }
