@media print {
  .row_chart_container {
    display: flex !important;        /* 인쇄 시에도 가로 배치 유지 */
    flex-wrap: nowrap !important;    /* 줄바꿈 방지 */
  }
  .row_chart_container .col-md-6 {
    width: 50% !important;           /* 인쇄 모드에서도 50% 유지 */
    display: block;
  }
  .row_chart_container #legend_container {
    margin-top: 0 !important;        /* 혹시 위로 밀려난 여백 제거 */
  }


  .row_chart_container .col-md-5 {
    float: left !important;
    width: 41.6667% !important;   /* Bootstrap col-md-5 비율 */
  }
  .row_chart_container .col-md-7 {
    float: left !important;
    width: 58.3333% !important;   /* Bootstrap col-md-7 비율 */
  }

  /* 혹시 줄바꿈 방지 */
  .row_chart_container .row_legend {
    display: flex !important;
    flex-wrap: wrap !important;
  }
}