body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
  }
  
  .dashboard {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }
  
  .gauge-widgets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
  }
  
  .widget {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: calc(50% - 20px);
    text-align: center;
  }
  
  .full-width-widget {
    width: 100%;
  }
  
  .button-container {
    display: flex;
    justify-content: center;
  }
  
  #map, #chart {
    height: 100%;
  }
  
  .map-widget {
    height: 500px;
  }
  
  /* Mobile View */
  @media (max-width: 768px) {
    .widget {
      width: 100%;
    }
    .map-widget, .full-width-widget {
      height: auto;
    }
    .gauge-container {
      height: 200px; /* Adjust based on your gauge size */
    }
    #map {
      height: 200px; /* Adjust based on your requirements */
    }
  }
  

* {
    box-sizing: border-box;
    }
  .gauge-container {
        font-family:  "Helvetica Neue", Helvetica, Arial, sans-serif;
        justify-content: center;
      display:flex;
  }
  
  .gauge g.arc {
      fill: steelblue;
  }
  
  .gauge g.pointer {
      fill: #e85116;
      stroke: #b64011;
  }
  
  .gauge g.label text {
      text-anchor: middle;
      font-size: 12px;
      font-weight: bold;
      fill: #666;
  }
  
  .gauge .tickline {
      stroke: "black";
      stroke-width: 1px;
  }
  .number-div {
      text-align: center;
  }
  .number-unit {
    display:block;
    font-size: 12px;
  }
  .number-value {
    font-size: 30px;
  }