/* styles.css */
body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f4f4f4;
  padding: 20px;
  box-sizing: border-box;
}

.chart-container {
  width: 100%;
  max-width: 800px;
 height: 65vh; /* Let the height adapt to the screen size */
}

#datasetSelector {
  display: block;
  margin-bottom: 20px;
  padding: 10px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

/* Media query for smaller screens */
@media (max-width: 600px) {
  body {
    flex-direction: column;
    height: auto;
  }
  .chart-container {
    height: 400px; /* Set a fixed height suitable for mobile portrait mode */
  }

  #datasetSelector {
    font-size: 14px;
    padding: 8px;
  }
}
