body {
  font-family: sans-serif;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#controls {
  max-width: 800px;
  width: 100%;
  margin-bottom: 1rem;
}

.dashboard-row {
  display: flex;
  flex-direction: row;
  gap: 2em;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#charts {
  flex: 3 1 0%;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

canvas {
  width: 100% !important;
  min-width: 220px;
  height: 300px !important;
  max-width: 100%;
  display: block;
  margin-bottom: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px #0001;
}

#metrics label {
  display: block;
  margin-bottom: 0.5em;
  cursor: pointer;
}
#metrics input[type="checkbox"] {
  margin-right: 0.5em;
}

#metricsSidebar {
  flex: 1 1 0%;
  max-height: 350px;
  overflow-y: auto;
  min-width: 150px;
  max-width: 220px;
  border: 1px solid #eee;
  padding: 1em;
  background: #fafbfc;
}
#metricsSidebar label {
  display: block;
  margin-bottom: 0.5em;
  cursor: pointer;
}
#metricsSidebar input[type="checkbox"] {
  margin-right: 0.5em;
}
