body {
  margin: 0;
  padding: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  background-color: #121212;
  color: #e0e0e0;
  font-family: Arial, sans-serif;
}

#map-container {
  flex: 1;
  display: flex;
}

#charts-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 300px;
  padding: 10px;
  background-color: #1e1e1e;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#charts-left .chart-container {
  flex: 1;
  margin-bottom: 10px;
}

#map {
  flex: 1;
  position: relative;
  margin: 10px;
}

#show-portland, #show-portland-charts {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  padding: 10px;
  background-color: #333;
  border: 1px solid #007bff;
  color: #007bff;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
#show-portland:hover, #show-portland-charts:hover {
  background-color: #007bff;
  color: white;
}
#show-portland-charts {
  left: 200px; /* Adjust this value to position the button next to the existing one */
}

#charts-bottom {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  background-color: #1e1e1e;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#charts-bottom .chart-container {
  flex: 1;
  margin: 0 10px;
  width: 300px; /* Ensuring the width is consistent */
  height: 300px; /* Ensuring the height is consistent */
}

.chartjs-render-monitor {
  background-color: #1e1e1e;
  color: #e0e0e0;
}

canvas {
  background-color: #1e1e1e;
}

.maplibre-popup {
  background-color: #1e1e1e;
  color: #e0e0e0;
  border: 1px solid;
  border-radius: 0.25rem;
  padding: 10px;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.maplibre-popup-content {
  background-color: #1e1e1e;
}

.maplibregl-popup-content {
  padding: 0px;
}
.maplibre-popup-tip {
  border-top-color: #1e1e1e;
  border-bottom-color: #1e1e1e;
}

/* Custom style for the close button */
.maplibre-popup-close-button {
  color: #e0e0e0;
  font-size: 1.2rem;
}
