body {
  background-color: #f5f5f5;
}

.dashboard-container {
  text-align: center;
  margin-top: 30px;
}

.chart-container {
  margin-top: 30px;
  display: inline-block;
}


* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}


.navcontainer {
  width: 100%;
  height: 70px;
  background-color: #5cb85c;
}

.navfont {
  font-size: large;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.text {
  color: white;
}

nav {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

nav a {
  text-decoration: none;
  font-size: large;
  margin: 20px;
  color: white;
}

nav a:hover {
  color: black;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

/* Responsive CSS */
@media only screen and (max-width: 768px) {
  .navcontainer {
    height: auto;
  }

  nav {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    margin: 10px 0; /* Adjust as needed */
  }
}



.chart-section-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1.8rem
}

.chart-section {
  width: 48%; /* Adjust the width as per your layout */
  margin-bottom: 20px;
}

.chart-date-time {
  margin-top: 0; /* Remove default margin */
}

/* Media query for screens smaller than 768px */
@media screen and (max-width: 768px) {
  .chart-section {
    width: 100%; /* Set width to 100% for smaller screens */
  }

  .chart-date-time {
    text-align: center; /* Center align the date on smaller screens */
  }
}




.chart-section-row-center {
  display: flex;
  justify-content: center;
}


.graphcontainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70vh;
}

#chartElementId {
  width: 80%; /* Adjust width as needed */
  margin-top: 10px; /* Add some spacing between dropdown/button and chart */
  height: 1900px;
}

.center-message {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px; /* Same height as the chart element */
  color: red;
  font-size: 24px;
  font-weight: bold;
}