@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

/* ✅ 전체 제목에 Pretendard 적용 */
body {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
}

/* mental-chart.css */

/* ✅ 차트 제목 스타일 */
.chart-title {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-size: 24px;
  color: #333;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}
/* 셀렉트 박스 폰트 강제 적용 */
select, option {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif !important;
}

/* 차트 영역 */
.chart-container {
  max-width: 700px;
  height: 400px;
  margin: 0 auto;
  position: relative;
}

#summaryChart {
  width: 100%;
  height: 100%;
}

/* 반응형 대응 */
@media (max-width: 768px) {
  .chart-container {
    max-width: 100%;
    height: 300px;
  }

  .chart-title {
    font-size: 22px;
  }
  
}
