@charset "utf-8";
/* ============================================================================
   print.css: media="print" 로만 로드된다
   ============================================================================
   ★ 이 파일의 존재 이유 한 줄: **app-shell 의 overflow 를 해제하는 것.**
     `.ie-main{overflow-y:auto}` 인 상태로 인쇄하면 스크롤 컨테이너의 **첫 화면만** 인쇄된다.
     계약서·매출 집계 출력이 통째로 실패한다. 아래 첫 블록을 지우지 마라.
   ============================================================================ */
@media print {

  /* ── ① 스크롤 컨테이너 해제 (필수) ─────────────────────────────────── */
  html.ie-html,
  body.ie-body { block-size: auto !important; overflow: visible !important; }
  .ie-shell     { display: block !important; block-size: auto !important; overflow: visible !important; }
  .ie-main-wrap { display: block !important; }
  .ie-main      { overflow: visible !important; block-size: auto !important; }
  .ie-content   { display: block !important; padding: 0 !important; min-block-size: 0 !important; }
  .ie-table-scroll { overflow: visible !important; border: 0 !important; }
  /* 위 !important 는 @media print 안이라 화면 캐스케이드에 영향을 주지 않는다.
     print.css 는 media 속성으로 격리돼 있으므로 in-force 레이어 규칙의 예외가 아니다. */

  /* ── ② 크롬(chrome) 요소 제거 ──────────────────────────────────────── */
  .ie-sidebar, .ie-topbar, .ie-scrim, .ie-skip, .ie-footer,
  .ie-filterbar, .ie-pagehead__actions, .ie-toast-root, .ie-modal-root,
  .ie-content .btn_bo_user, .ie-content #bo_btn_top, .ie-content .bo_fx,
  .ie-content .bo_sch_wrap, .ie-content #bo_v_act, .ie-content .btn_confirm,
  .ie-content .cmt_btn, .pg_wrap { display: none !important; }

  /* ── ③ 표: 페이지마다 헤더 반복 ───────────────────────────────────── */
  .ie-table thead, .ie-content .tbl_head01 thead { display: table-header-group; }
  .ie-table tr, .ie-content .tbl_head01 tr { break-inside: avoid; }
  .ie-table thead th, .ie-content .tbl_head01 thead th {
    position: static;              /* sticky 는 인쇄에서 의미가 없고 레이아웃만 흔든다 */
    background: #F6F8F9 !important;
    -webkit-print-color-adjust: exact; print-color-adjust: exact;
  }
  .ie-card, .ie-table-scroll { border: 1px solid #DFE5E9 !important; break-inside: avoid; }

  /* ── ④ 배지·상태는 색이 빠져도 읽혀야 한다 (08 원칙 4) ─────────────── */
  .ie-badge { border: 1px solid #78868F !important; color: #2A343B !important; background: none !important; }

  /* ── ⑤ 링크 URL 을 본문에 노출하지 않는다(ERP 출력물은 사내 배포용) ── */
  a[href]::after { content: none !important; }

  @page { margin: 14mm 12mm; }
  body.ie-body { font-size: 11pt; color: #000; background: #fff; }
}
