#legendContainer {
            background: rgba(255, 255, 255, 0.8);
            padding: 5px;
            border-radius: 5px;
            box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
            position: absolute;
            top: 400px;
            right: 50px;
            z-index: 1000;
            width: 100px;
            display: none; /* Initially hidden */
        }

        #legendImage2 {
            width: 100%;
            height: auto;
        }

        .controls {
                   display: flex;
                   background-color: white;
                justify-content: flex-start;
                gap: 10px;
                position: fixed;
                bottom: 50px;
                left: 20px;
                z-index: 1000;
                padding: 10px;
            }
            
        
        
        .controls label {
            margin-right: 5px;
        }

         #featureInfoButton {
            background-color: green;
            color: white;
            border: none;
            
            cursor: pointer;
            font-size: 16px;
           
            align-items: center;
        }

        #featureInfoButton:hover {
            background-color: #0056b3;
        }

        .fa-info-circle {
            margin-right: 5px;
        }
       
        #toggleMapAndLegendButton {
            background-color: #007bff;
            color: white;
            border: none;
            
            cursor: pointer;
            font-size: 16px;
        }

        #toggleMapAndLegendButton:hover {
            background-color: #0056b3;
        }

        .leaflet-bar-timecontrol .leaflet-control-timecontrol {
           
            display: none; /* Hide the element */
        }
        

      