.AttendanceChart-container {
  margin: 0 0 0px 20px;
  background-color: white;
  border-radius: 12px;
  width: 500px;
  padding: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

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

.AttendanceChart-title img {
  width: 20px;
  height: 20px;
}

.AttendanceChart-chart {
  width: 100%;
  height: 250px;
}

.tooltip {
  border-radius: 10px;
  background-color: #fff;
  padding: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.AttendanceChart-legend {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
}

.AttendanceChart-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.AttendanceChart-legend-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.present {
  background-color: #fae27c;
}

.absent {
  background-color: #c3ebfa;
}
