@charset "utf-8";

.report-page { max-width: 1440px; margin: 0 auto; padding: 200px 40px 100px; }
.report-page .report-filter { margin-top: 40px; background: #fff; border-radius: 28px; padding: 40px 48px; box-shadow: 0 24px 60px rgba(16, 31, 62, 0.08); }
.report-page .filter-tabs { display: flex; gap: 20px; }
.report-page .filter-tab { position: relative; font-size: 18px; font-weight: 600; color: #a0a0a0; cursor: pointer; display: inline-flex; align-items: center; }
.report-page .filter-tab input { position: absolute; opacity: 0; pointer-events: none; }
.report-page .filter-tab span { display: inline-flex; align-items: center; gap: 8px; }
.report-page .filter-tab span::before { content: ""; width: 24px; height: 24px; border-radius: 50%; border: 2px solid #4c2dff; display: inline-block; transition: all 0.2s ease; box-sizing: border-box;}
.report-page .filter-tab input:checked + span::after { content: ""; position:absolute; left:5px; top:50%; width: 14px; height: 14px; margin-top:-7px; border-radius: 50%; display: inline-block; transition: all 0.2s ease; background: #4c2dff;}

.report-page .filter-period { margin-top: 30px; display: flex; align-items: center; gap: 19px; }
.report-page .period-label { flex-shrink: 0; font-size: 18px; font-weight: 400; color: #1e1e1e; }
.report-page .period-inputs {  flex-shrink: 0; display: flex; align-items: center; gap: 12px; }
.report-page .period-inputs input { width: 180px; height: 58px; padding: 0 16px; font-size: 18px; font-weight: 400; color: #333; background: #f9f9fb; }
.report-page .period-divider { font-size: 18px; color: #000; }
.report-page .filter-notice { list-style: none; margin: 0; padding: 0; color: #999; font-size: 15px; font-weight: 400; line-height: 1.7; flex: 1 1 100%; }

.report-page .report-metrics { display: flex; justify-content: center; flex-wrap: wrap; margin-top: 26px; background: #F7F8F9; padding: 45px; gap: 0 150px; }
.report-page .metric-card { display: flex; flex-direction: column;}
.report-page .metric-label { font-size: 18px; line-height:150%; color: #7a7b88; margin-bottom: 10px; }
.report-page .metric-value { font-size: 56px; font-weight: 700; line-height:70px; color: #111; }
.report-page .metric-value.accent { color: #4678FD; }

.report-page .report-graph { margin-top: 20px; background: #F7F8F9; padding: 48px 80px 36px;}
.report-page .report-graph canvas { width: 100%; height: 480px; display: block; }
.report-page .noti {color:#4c2dff; font-size:15px; margin-top:30px;}

@media (max-width: 768px) {
  .report-page { padding: 100px 20px 50px; }
  .report-page .report-filter { margin-top: 24px; border-radius: 16px; padding: 24px 20px; box-shadow: 0 12px 30px rgba(16, 31, 62, 0.08); }
  .report-page .filter-tabs { flex-wrap: wrap; gap: 12px; }
  .report-page .filter-tab { font-size: 15px; }
  .report-page .filter-tab span::before { width: 20px; height: 20px; }
  .report-page .filter-tab input:checked + span::after { left: 4px; width: 12px; height: 12px; margin-top: -6px; }
  .report-page .filter-period {display: flex; flex-direction: column; align-items: flex-start; margin-top: 20px; flex-wrap: wrap; gap: 12px; }

  .report-page .period-label { font-size: 15px; }
  .report-page .period-inputs { flex:1; flex-wrap: wrap; gap: 8px; width:100%;}
  .report-page .period-inputs label {flex:1;}
  .report-page .period-inputs input { width: 100%; height: 50px; padding: 0 12px; font-size: 15px; }
  .report-page .period-divider { font-size: 15px; }
  .report-page .filter-notice { font-size: 13px; margin-top: 12px; }
  .report-page .report-metrics { margin-top: 20px; padding: 24px 20px; gap: 24px; }
  .report-page .metric-label { font-size: 14px; margin-bottom: 8px; }
  .report-page .metric-value { font-size: 36px; line-height: 44px; }
  .report-page .report-graph { margin-top: 16px; padding: 24px 16px 20px; }
  .report-page .report-graph canvas { height: 280px; }
}