.report-h1{
  text-align: center;
  margin-top: 30px;

  font-weight: bold;
}
.report-p{
  text-align: center;
  color: #636363;

  font-size: 0.8rem;
}

.report-h2{
  text-align: center;
  margin-top: 30px;
  margin-bottom: 10px;

  font-weight: bold;
}

.report-container{
  display: flex;
  width: 90%;
  justify-content: center;
  align-items: flex-start;

  margin: 10px auto;
  border: 1px solid #ccc;
}
.chart-container{
  margin: 30px auto;
}
.chart-pie{
  width: 300px;
  height: 300px;
}
.chart-bar {
  margin: 0 auto;
}
.chart-bar > canvas {
  max-height: 400px;
  min-width: 400px;  
}

@media (max-width: 768px) {
  .report-container{
    flex-direction: column;
  }
  .chart-bar {
    overflow-x: auto;
    max-width: 300px;
  }
}