/* Define @font-face first */
@font-face {
    font-family: 'qatar-font';
    src: url('../../fonts/qatar-font.ttf') format('truetype');
    /* Add other font properties if needed */
}

/* Then apply the custom font in wildcard or global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'qatar-font', Segoe UI; /* Use the custom font here */
}

/* Hide the close button in the InfoWindow */
.google-maps-infowindow .gm-style-iw-c {
  display: none !important;
}

.gm-ui-hover-effect {
  display: none !important;
}

/*
#fullscreen-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    background-color: white;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}*/

      /* Basic style for the notification button */
      .notification-button {
        background-color: transparent; /* Transparent background */
        border: none; /* No border */
        cursor: pointer; /* Pointer cursor on hover */
        position: relative; /* Position relative for pseudo-elements */
      }

      /* Style for the bell icon ti ti-bell */
      .notification-button .ti-bell .ti-map-pin {
        font-size: 24px; /* Size of the bell icon */
        color: #333; /* Color of the bell icon */
        transition: color 0.3s ease; /* Smooth color transition */
      }

      /* Flashing animation */
      @keyframes flash {
        0% { color: #333; }
        50% { color: #f00; } /* Change color to red at the middle of the animation */
        100% { color: #333; }
      }

      /* Add flashing effect to the bell icon */
      .notification-button.flash .ti-bell .ti-map-pin{
        animation: flash 1s infinite; /* Apply the flash animation */
      }

      /* Optional: Add a small dot to indicate a new notification */
      .notification-button .notification-dot {
        position: absolute;
        top: -5px; /* Position the dot above the bell icon */
        right: -5px; /* Position the dot to the right of the bell icon */
        width: 10px; /* Size of the dot */
        height: 10px; /* Size of the dot */
        background-color: red; /* Color of the dot */
        border-radius: 50%; /* Make the dot round */
      }


  /* CSS for custom info window */
 /*
  .custom-info-window {
    background-color: white;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
    position: absolute;
    display: none;
  }

  .custom-info-window h3 {
    margin-top: 0;
  }
*/


  /* .custom-info-window .close-button {
    display: none !important;
  } */



      /* Optional: CSS for custom styling */
      .custom-info-window {
        display: none;
        position: absolute;
        background-color: white;
        padding: 10px;
        border: 1px solid #ccc;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        z-index: 1;
      }
      .custom-info-window h3 {
        margin: 0;
        font-size: 16px;
      }
      .custom-info-window p {
        margin: 5px 0;
        font-size: 14px;
      }


       /* Need To ReFormat */





      #fullScreenButton {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 1000;
        padding: 10px 20px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }


     /* Add custom CSS for tooltips */
     .tooltip1 {
        position: absolute;
        display: none;
        background-color: rgba(0, 0, 0, 0.75);
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 14px;
    }
    
    /* Adjust tooltip position */
    .pc-head-link:hover .tooltip1,
    .pc-head-link:focus .tooltip1 {
        display: block;
        top: calc(100% + 5px);
        left: 50%;
        transform: translateX(-50%);
    }



    .collapse-pc {
      margin-right: 10px; /* Adjust this value as needed */
      margin-left: 10px; /* Adjust this value as needed */

    }



    #map {
      height: calc(100vh - 27vh); /* height: 100vh; /* Initially set to fill the viewport */
      width: 100%;
      position: relative;
      /* border: 1px solid #ccc;
      box-sizing: border-box; /* Ensure padding and border are included in width/height */      
    }
    .standard-color-btn {
      position: absolute;
      bottom: 3.5%;
      left: 3.5%;
      background: white;
      border: 1px solid #ccc;
      border-radius: 3px;
      padding: 5px;
      cursor: pointer;
      z-index: 100;
    }
    .custom-button-container {
      position: absolute;
      top: 2.5em;
      right:5.8em;
      /* left: 2.8em; */
      /* transform: translateX(-50%); */
      display: flex;
      gap: 10px;

      z-index: 10; /* Ensure buttons are above map controls */
    }
    .custom-button {
      background-color: white;
      border: 1px solid #a3a3a3;
      border-radius: 12px; /* Rounded corners */
      padding: 10px 20px;
      cursor: pointer;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }
    .custom-button:hover {
      background-color: #f0f0f0;
    }

    /*
    .custom-control {
      background-color: rgb(219, 75, 75);
      border: 2px solid #fff;
      border-radius: 3px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.3);
      cursor: pointer;
      margin: 10px;
      text-align: center;
    }
    .custom-control img {
      height: 30px;
      width: 30px;
    }
      */

  /* From Index Page */
  .rounded-rectangle1 {
        
    border: 1px solid  rgba(255, 255, 255, 0.5); /* Green border */
    border-radius: 10px; /* Rounded corners */
    padding: 5px; /* Space inside the border */
    /* background-color: transparent; */ /* Transparent background */
    background-color: rgba(255, 255, 255, 0); /* 30% opacity white background */
    width: 85px; /* Width of the rectangle */
    height: 100px; /* Height of the rectangle */
    text-align: center; /* Center text horizontally */
    line-height: 20px; /* Center text vertically */
    margin: 5px; /* Margin around the rectangle */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow for better look */
    position: relative; /* For absolute positioning of text if needed */
  }


  .rounded-rectangle1 .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center text */
  }

  
  .circle-container {
    position: relative;
    display: inline-block;
  }



  .small-circle {
    width: 15px;
    height: 15px;
    background-color: #00000000;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #00000000;
    transition: background-color 0.3s, transform 0.3s;
  }



  .small-circle:hover {
    background-color: #0BC15A;
    transform: scale(1.1);
  }


  .small-circle:active {
    background-color: #0BC15A;
    transform: scale(0.9);
  }

  /* Tooltip styles */
  .tooltip {
    position: absolute;
    bottom: 125%; /* Position above the circle */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 10; /* Make sure the tooltip appears above other content */
  }

  .circle-container:hover .tooltip,
  .circle-container:focus .tooltip,
  .pc-head-link:hover .tooltip,
  .pc-head-link:focus .tooltip { /* Show tooltip on hover and focus */
    opacity: 1;
    visibility: visible;
  }

  .close-btn {
  position: absolute;
  top: 10px;
  left: 20px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #333; /* Adjust color as needed */
}

.card-body-st {
  position: relative;
  padding: 10px;
}

.pm-note {
  display: none; /* Hide note by default */
}



/* Start - this css for info window for puplic map */


.marker-content {
  background-color: white;
  color: black;
  padding: 5px;
  border-radius: 5px;
  font-weight: bold;
  position: relative;
  width: 120px; /* Adjust width as needed */
  height: auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3); /* Optional: add shadow for better visibility */
  overflow: hidden; /* Prevent scrollbars */
  white-space: nowrap; /* Prevent text wrapping */
}

.marker-title {
  background-color: #008577; /* Blue background for title bar */
  color: white;
  padding: 3px;
  font-size: 14px;
  border-radius: 5px 5px 0 0; /* Rounded top corners */
  font-weight: light;
  text-align: center;
}

.marker-body {
  padding: 5px;
  font-size: 12px;
}

.marker-body-content {
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* End css for info window for puplic map */


.parm-label {
  display: block; /* Make PM10 appear on a new line */
  
}


.icon-container {
  margin-top: 8px; /* Space between the circle and the label */

  margin-bottom: 8px; /* Space between the icon and the circle */
}

.circle-container {
  margin-bottom: 8px; /* Decrease this value to reduce space */

}

.small-circle1 {
  width: 15px; /* Keep your desired width */
  height: 15px; /* Keep your desired height */
  background-color: #4caf50; /* Change to the desired green color */
  border-radius: 50%; /* Make it a circle */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Retain shadow */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff; /* Keep text color */
  font-size: 18px; /* Keep font size */
  font-weight: bold; /* Keep font weight */
  border: 2px solid #00000000; /* Keep border */
  transition: background-color 0.3s, transform 0.3s; /* Keep transition */
}

.dropdown.pc-h-item.header-user-profile {
  display: flex;
  /* display: flex; /* or display: block; */
}


/* Make the logo responsive */
.logo_auth {
  max-width: 100%;   /* Ensures the image scales down */
  height: auto;      /* Maintain the aspect ratio */
}

/* Optionally, you can limit the maximum size for larger screens */
.logo-lg-auth {
  max-width: 420px;  /* Maximum width for large screens */
  width: 100%;       /* Allows it to scale on smaller screens */
}


/* Add space between the logo and the text */
.logo-space {
  margin-bottom: 50px;  /* Adjust the value as needed */
}

hr.my-4 {
  border: 0;
  border-top: 2px solid #ccc;  /* Light gray line */
  margin: 20px 0;  /* Adds space above and below the line */
}


/* These ctyles for login page */
body.login-page1 {
  height: 100vh; /* Full height */
  background: url('path-to-your-background-image.jpg') no-repeat center center fixed;
  background-size: cover; /* Ensure background covers the full screen */
  overflow: hidden; /* Prevent scrollbars */
}

.pc-container1 {
  height: 100%; /* Ensure the container takes up the full screen */
}

.pc-content1 {
  height: 100%; /* Ensure the content section takes up the full height */
}


.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.form-container form {
  width: 100%;
  max-width: 400px; /* Adjust the width of the form */
}




/* Test info in public view */
/***************************/
/* Remove scrollbars and make background transparent */
.marker-content1 {
  background-color: rgba(0, 0, 0, 0.5) !important; /* Semi-transparent black background */
  padding: 15px !important;
  border: none !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3) !important; /* Optional: shadow to make content stand out */
  color: #fff !important; /* Ensures text is visible */
  max-width: 100%;
  max-height: 100%;
  overflow: hidden !important; /* Hides overflow to prevent scrollbars */
  border-radius: 8px; /* Optional: rounded corners */
  position: relative; /* Ensure child elements are correctly positioned */
}

/* Ensure that the entire body and the popup content have transparent background */
.marker-body-content {
  background-color: transparent !important; /* Transparent background */
  overflow: hidden !important; /* Hides overflow to prevent scrollbars */
  color: #fff !important; /* Text color */
}



/* Table layout for Readings */
.readings-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 14px;
  overflow: hidden; /* Ensures no scrollbars in the table */
}

/* Table header styles */
.readings-table th {
  text-align: left;
  padding: 8px;
  background-color: #f0f0f0;
  border-bottom: 1px solid #ccc;
}

/* Table cell styles */
.readings-table td {
  padding: 8px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

/* Optional: Reduce font size on smaller screens */
@media (max-width: 768px) {
  .marker-content1 {
      font-size: 12px; /* Smaller text on small screens */
  }
  .small-circle {
      width: 15px; /* Smaller circle for small screens */
      height: 15px;
  }
}

/* Prevent scrollbars from appearing in webkit browsers like Chrome */
::-webkit-scrollbar {
  display: none; /* Hide the scrollbar completely */
}



/* Add this CSS to your stylesheet */
.gm-style-iw1 {
  background-color: transparent !important; /* Remove background color */
  border: none !important;                   /* Remove border */
  box-shadow: none !important;               /* Remove shadow */
  padding: 0 !important;                     /* Remove padding */
}


/* For Google Maps or any other map library info window */
.gm-style-iw {
  background-color: transparent !important; /* Ensures the background is transparent */
  overflow: hidden !important; /* Hides any scrollbars */
  max-width: none !important; /* Ensures content doesn't overflow horizontally */
  max-height: none !important; /* Ensures content doesn't overflow vertically */
  box-shadow: none !important; /* Remove default shadow */
}



/*ST: Public view */
/* Custom Button Style */

.custom-button1 {
  position: absolute;
  top: 2.4em;
  right: 2.4em;
  display: flex;
  gap: 10px;

  background-color: rgb(0, 131, 117); /* Button color */
  color: white; /* Text color */
  padding: 10px 15px; /* Button size */
  border-radius: 0px; /* Make button round if desired */
  font-size: 14px;
  cursor: pointer;
  z-index: 10; /* Ensure buttons are above map controls */
  border: 1px solid white; /* Initial white border */
  transition: background-color 0.3s ease; /* Smooth transition for background color */
  
  animation: revolvingLight 2s linear infinite; /* Apply revolving light animation */
}

/* Keyframe animation for revolving light effect */
@keyframes revolvingLight {
  0% {
    box-shadow: 0 0 5px 1px rgba(255, 255, 255, 0.4), /* Reduced shadow thickness */
                0 0 10px 3px rgba(255, 255, 255, 0.2); /* Reduced shadow thickness */
  }
  25% {
    box-shadow: 8px 0 5px 1px rgba(255, 255, 255, 0.4),
                15px 0 10px 3px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 8px 5px 1px rgba(255, 255, 255, 0.4),
                0 15px 10px 3px rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: -8px 0 5px 1px rgba(255, 255, 255, 0.4),
                -15px 0 10px 3px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 5px 1px rgba(255, 255, 255, 0.4),
                0 0 10px 3px rgba(255, 255, 255, 0.2);
  }
}

.custom-button1:hover {
  background-color: rgb(1, 105, 95); /* Button color on hover */
  color: black; /* Change text color to black on hover */
}
/* Ensuring the map container stays responsive */
#map {
  position: relative; /* Ensure the button is positioned relative to the map container */
  width: 100%; /* Full width */
  height: 80vh; /* 80% of the viewport height */
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .custom-button1 {
    top: 2.1em;
    right: 2.1em;
  }
}




.rounded-rectangle2 {
  border: 1px solid rgba(255, 255, 255, 0.5); /*/ Green border */
  border-radius: 10px; /* Rounded corners */
  background-color: rgba(255, 255, 255, 0); /* Transparent background */
  width: 100px; /* Width of the rectangle */
  height: 100px; /* Height of the rectangle */
  text-align: center; /* Center text horizontally */
  line-height: 20px; /* Center text vertically */
  margin: 5px; /* Margin around the rectangle */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow for better look */
  position: relative; /* For absolute positioning of text if needed */
  padding: 0; /* Remove padding to eliminate space inside */
}

.rounded-rectangle2 .top-section {
  flex: 1;
  background-color: #4caf50;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin: 0; /* Remove margin */
  padding: 0; /* Remove padding */
  width: 100%; /* Ensure the section takes the full width */
}

.rounded-rectangle2 .bottom-section {
  flex: 2;
  background-color: rgba(107, 66, 66, 0.5);
  border-radius: 0 0 10px 10px;  
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers vertically */
  align-items: center; /* Centers horizontally */
  color: #4caf50;
  margin: 0; /* Remove margin */
  padding: 0; /* Remove padding */
  width: 100%; /* Ensure the section takes the full width */
}


.rounded-rectangle3 {
  border: 1px solid rgba(255, 255, 255, 0.5); /*/ Green border */
  border-radius: 10px; /* Rounded corners */
  background-color: rgba(255, 255, 255, 0); /* Transparent background */
  width: 100px; /* Width of the rectangle */
  height: 100px; /* Height of the rectangle */
  text-align: center; /* Center text horizontally */
  line-height: 20px; /* Center text vertically */
  margin: 5px; /* Margin around the rectangle */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow for better look */
  position: relative; /* For absolute positioning of text if needed */
  padding: 0; /* Remove padding to eliminate space inside */
}

.rounded-rectangle2 .top-section {
  flex: 1;
  background-color: #4caf50;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin: 0; /* Remove margin */
  padding: 0; /* Remove padding */
  width: 100%; /* Ensure the section takes the full width */
}

.rounded-rectangle2 .bottom-section {
  flex: 2;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0 0 10px 10px;  
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers vertically */
  align-items: center; /* Centers horizontally */
  color: #4caf50;
  margin: 0; /* Remove margin */
  padding: 0; /* Remove padding */
  width: 100%; /* Ensure the section takes the full width */
}

/*======================*/
/* Test Generated Table */
/*======================*/

/* Ensure the container does not wrap the cards */
#cards-container {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping */
  overflow-x: auto; /* Allow horizontal scrolling if necessary */
  gap: 16px; /* Space between the cards */
  padding-bottom: 16px; /* Optional: add some padding to the bottom */
}

/* Card styles */
.card-new1 {
  border: 1px solid #607D8B; /* Light grey border */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 2px 5px rgba(0, 131, 117, 0.5); /* Optional: subtle shadow */
  margin-bottom: 16px; /* Space between cards in vertical direction */
  transition: border-color 0.3s; /* Smooth transition for hover effect */
  width: 250px; /* Set a fixed width for each card */
}

/* Hover effect: change border color on hover */
.card-new1:hover {
  cursor: pointer;
  border: 1px solid #bdbdbd; /* Light grey border */
  border-color: #f7fafa; /* Change border color to blue on hover */
  box-shadow: 0 2px 5px rgba(210, 211, 211, 0.5); /* Optional: subtle shadow */

}

/* Additional optional styling for card contents */
.parameter-card {
  border: 1px solid #0a0a0a9a;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 10px;
}

.parameter-name {
  font-weight: bold;
  margin-bottom: 5px;
}

.circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-bottom: 5px;
}



/* Add a white border between the columns */
.card-body1 {
  border-right: 1px solid #ffffff; /* Right border for each cell */
}

.card-body1.w-50 {
  border-bottom: 1px solid #ffffff; /* Optional: Bottom border between rows */
}

/* Remove the border from the last column (optional) */
.card-body1.w-50:last-child {
  border-right: none;
}

/* Remove the bottom border from the last row (optional) */
.card-body1.w-50.br {
  border-bottom: none;
}


/* ================ */
/* Public-view page */
/* ================ */

.card1 {
  width: 100%;
  /*max-width: 400px;*/
  height: 40vh;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(184, 169, 34, 0.1);
  background: url('/static/assets/imgs/areas/no-image.png') center/cover no-repeat; ; /* center/contain no-repeat; */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: white;
  text-align: center;
/* padding: 7px; 
 margin: 25;*/

}

.card-content {
  background: rgba(0, 131, 118, 0.23); /* rgba(0, 131, 118, 0.18); /* semi-transparent overlay */
  padding: 20px;
  /* text-align: center;*/

}

h1 {
  margin: 0;
  font-size: 24px;
}

p {
  margin: 10px 0 0;
  font-size: 16px;
}


  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .card1 {
        height: 250px;
    }

    h1 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .card1 {
        height: 200px;
    }

    h1 {
        font-size: 18px;
    }

    p {
        font-size: 12px;
    }
}

.header-content {
  display: flex;
  flex-direction: row; /* Stack elements horizontally */
  align-items: center; /* Vertically center items in the container */
  justify-content: space-between; /* Space between the station name and the comment */
}

.header-content h5 {
  margin: 0;                    /* Remove default margin */
  padding-right: 10px;           /* Optional: Add space between the station name and the comment */
}

.click-container {
  display: flex;
  align-items: center; /* Vertically align the label and image */
  gap: 0; /* Ensure no space between label and icon */
}

.click-container label {
  font-size: 14px;              /* Set the font size for the label */
  margin-right: 5px;            /* Optional: Add space between the label and the icon */
  animation: colorChange 2s infinite; /* Apply the color change animation */
}

/* Add color change effect */
@keyframes colorChange {
  0% {
    color: rgb(240, 250, 186); /* Start with white */
  }
  50% {
    color: #008375; /* Transition to #008375 (greenish) */
  }
  100% {
    color: rgb(240, 250, 186); /* End with white */
  }
}
 
.click-container img.icon {
  width: 16px; /* You can adjust the size of the icon */
  height: 16px; /* Adjust the size of the icon */
  margin-left: 5px; /* Optional: Space between the label and icon */
  
}

.icon {
  width: 24px; /* Set your desired width */
  height: 24px; /* Set your desired height */
  margin-right: 5px; /* Add space between icon and text */
}


#clickLink {
  font-size: 12px;
  color: #c9e256;
  text-decoration: none; /* Remove underline */
  cursor: pointer; /* Show pointer cursor to indicate it's clickable */
  display: inline-block;
}

#clickLink:hover {
  color: #005f4b; /* Darker shade on hover */
}







#filtercollapse41 {
  
  background: url('/static/assets/imgs/map/buildings-v6.png') center/contain no-repeat;
  /*background: url('/static/assets/imgs/map/parms/pressure.svg') center/contain no-repeat; /**/
  /*background-size: cover; /* Ensures the image covers the entire div */
  /*background-position: center; /* Centers the background image */
  /*background-repeat: no-repeat; /* Prevents the image from repeating */
}


.table-card_bk {
  background: url('/static/assets/imgs/map/parms/pressure.png'); /* center/contain no-repeat; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



/* chartFooter */
/* chartContainer takes 100% width */
#chartContainer {
  width: 100%;  /* Full width */
  margin: 0 auto;  /* Center the container */
  padding: 0;  /* Optional: Remove padding */
  text-align: center;  /* Ensures the content inside is centered */
}

/* chartFooter */
#chartFooter {
  text-align: center;  /* Centers the footer content */
  font-size: 14px;
  color: #eeeeee;
  padding: 10px;
  /*background-color: #f4f4f4; */
  margin-top: 20px;
  width: 100%;  /* Full width of the container */
  box-sizing: border-box;  /* Include padding in the element's total width */
}

/* Ensure the chart container fills the parent width */
#aqiChart {
  width: 100%;  
  height: 480px;  /* Increase height for more room */
  /* margin-top: 50px;  /* Adjust space as needed */
  /* margin-bottom: 60px; */
  /* padding-bottom: 10px;  */
}

#chartHeader {
  text-align: center; 
  padding: 5px; 
  /* background-color: #f5f5f5;  */
  margin-bottom: 5px;
}



/* last update widget */
#last_update_container {
  min-height: 30px; /* Ensures space is reserved */
}

.loading-placeholder {
  color: #888;
  font-style: italic;
}

.last-update-widget {
  /* background-color: #f1f1f1; */
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  color: #e4d9d9;
  display: none;  /* Initially hide the real content */
  opacity: 0;
  /* transition: opacity 0.5s ease-in-out; */
}


/* Highlight the selected area */
.selected {
  background-color: #008375;  /* Change this to the desired highlight color */
  color: white;  /* Change the text color to ensure it's readable */
}
