.chart-container {
  background-color: white;
  border-radius: 15px;
  width: 180px;
  padding: 15px 15px 0px 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.chart-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.chart-title img {
  width: 20px;
}

.chart-title h1 {
  font-size: 1.25rem;
  font-weight: 600;
}

.chart {
  position: relative;
  width: 100%;
  height: 200px;
  margin-bottom: 16px;
}

.chart img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
}

.chart-bottom {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.chart-legend {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.chart-legend .color-box {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.color-boys {
  background-color: #c3ebfa;
  margin: 0 10 0 0;
}

.color-girls {
  background-color: #fae27c;
  margin: 0 10 0 0;
}

.chart-legend h1 {
  font-size: 1rem;
  font-weight: bold;
}

.chart-legend h2 {
  font-size: 0.875rem;
  color: gray;
  margin: 0px -1px 10px 0;
}
