 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: Arial, sans-serif;
        }
        #cesiumContainer {
            width: 100%;
            height: 100vh;
        }
        .title-container {
            display: block;
            position: absolute;
            top: 20px;
            left: 20px;
            /* background: white; */
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            z-index: 1000;
            background:  #e7e0cd;
            border: 1px solid #444;
    
        }
        .title-container h1 {
            /* font-size: 24px; */
            margin-bottom: 10px;
            color: #A87000;
            font-family: sans-serif;
            font-size: 16pt;
            text-align: left;
        }
        .title-container p {
            font-size: 14px;
            color: #A87000;
            margin-bottom: 3px;
        }
        
        .info-panel {
            position: absolute;
            bottom: 30px;
            right: 20px;
            background:  #e7e0cd;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            z-index: 1000;
            width: 250px;
            display: none;
        }
        .info-panel.active {
            display: block;
        }
        .info-panel h3 {
            margin-bottom: 10px;
            color: #A87000;
        }
        .info-panel p {
            font-size: 14px;
            color: #A87000;
        }
        .info-panel button {
            padding: 10px 20px;
            background: #007bff;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
        }
        .info-panel button:hover {
            background: #0056b3;
        }
.info-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.info-btn:hover {
    color: #5b3d01;
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
}
.toggle-container label {
    color: #A87000;
    font-size: 14px;
}
.toggle-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.toggle-container input[type="checkbox"]:checked + label {
    font-weight: bold;
}
.info-btn {
     padding: 10px 20px;
   background: #A87000;
     color: white;
      border: none;
      border-radius: 4px;
     cursor: pointer;
    font-size: 14px;
      align-items: right;  
}
/* .title-container button {
  padding: 10px 20px;
   background: #007bff;
     color: white;
      border: none;
      border-radius: 4px;
     cursor: pointer;
    font-size: 14px;
      align-items: right;   
}
.title-container button:hover {
    background: #0056b3;
} */

.legend-panel {
  position: absolute;
  left: 20px;
  bottom: 30px;
  background:  #e7e0cd;
  padding: 12px 15px;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  font-family: Arial, sans-serif;
  font-size: 13px;
  display: none;   /* Hidden by default */
  z-index: 10;
}

.legend-panel h4 {
  margin: 0 0 8px 0;
  font-size: 14px;
   color: #A87000;
}

.legend-item {
  display: flex;
  align-items: center;
  margin: 4px 0;
   color: #A87000;
}

.legend-color {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border-radius: 3px;
}

.legend-color.nodata    { background:#7c7c7b; }
.legend-color.verylow   { background:#fff5eb; }
.legend-color.low       { background:#fee6ce; }
.legend-color.moderate  { background:#fdae6b; }
.legend-color.high      { background:#e6550d; }
.legend-color.veryhigh  { background:#a63603; }
