/* ============================================================
   charts.css — chart.js 캐버스 컨테이너
   ============================================================ */

.chart-container {
  position: relative;
  width: 100%;
  flex: 1;
  height: 250px;      /* 모바일 기본 높이 */
}

/* 대형 뷰포트: 부모 flex로 높이 결정 */
@media (min-width: 1200px) {
  .chart-container { height: auto; min-height: 0; }
}

/* chart-box — License 페이지 내부 차트 영역 */
.chart-box {
  flex: 1;
  position: relative;
  width: 100%;
  min-height: 0;
}
