#chartsContainer {
  width: 90%;
  margin-top: 60px;
  background-color: #ededed;
  border-radius: 30px;
  padding: 50px;
}

#lineChartContainer {
  height: 250px;
  width: 100%;
  margin-bottom: 40px;
}

#chartHeaderContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 10px;
}

#chartHeader {
  text-align: center;
  font-size: 26px;
}

#chartHeader:first-child {
  color: rgb(181, 0, 0);
}

#chartHeader:nth-child(2) {
  color: blue;
}

#chartHeader:nth-child(3) {
  color: rgb(0, 104, 0);
}

#pieChartContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

#pieChartContainer > * {
  justify-content: center;
}

#pieChartContainer > *:first-child,
#pieChartContainer > *:nth-child(2),
#pieChartContainer > *:nth-child(3) {
  margin: 0 15px 25px;
}

#pieChartContainer > *:nth-child(n + 4) {
  padding: 25px;
}

/* Red: 4th, 7th, 10th, ... */
#pieChartContainer > *:nth-child(3n + 4) {
  background-color: red;
}

/* Blue: 5th, 8th, 11th, ... */
#pieChartContainer > *:nth-child(3n + 5) {
  background-color: blue;
}

/* Green: 6th, 9th, 12th, ... */
#pieChartContainer > *:nth-child(3n + 6) {
  background-color: green;
}
