/* 인쇄용 스타일 */
@media print {
    /* 네비게이션, 푸터, 버튼 등 숨기기 */
    header, footer, .navbar, #sidebar, .btn, #date-filter-form, #export-csv-btn, #print-btn, #settings-loading, #settings-content, /* 다른 숨길 요소들 */ {
        display: none !important; 
    }

    /* 컨테이너 및 테이블 너비 조정 */
    .container, #attendance-history-table-container, body {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 10pt; /* 인쇄에 적합한 폰트 크기 */
        color: #000 !important; /* 검은색 텍스트 */
        background: none !important; /* 배경 제거 */
    }

    /* 테이블 스타일 조정 (테두리 등) */
    #attendance-history-table-container table,
    #attendance-history-table-container th,
    #attendance-history-table-container td {
        border: 1px solid #ccc !important; /* 테두리 표시 */
        padding: 4px; /* 패딩 줄이기 */
    }

    #attendance-history-table-container th {
        background-color: #f2f2f2 !important; /* 헤더 배경색 (선택적) */
        -webkit-print-color-adjust: exact; /* Chrome/Safari에서 배경색 인쇄 */
        print-color-adjust: exact; /* 표준 */
    }
    
    /* 페이지 나누기 방지 (테이블 행이 잘리지 않도록) */
    #attendance-history-table-container tr, #attendance-history-table-container td, #attendance-history-table-container th {
        page-break-inside: avoid !important;
    }
    
    /* 페이지 제목 등 필요한 요소는 보이게 */
    .container h2 { /* 페이지 제목 예시 */
      display: block !important;
      text-align: center;
      margin-bottom: 20px;
    }
    
    /* 링크 URL 표시 (선택적) */
    a[href]:after {
        /* content: " (" attr(href) ")"; */ /* 필요하다면 링크 옆에 URL 표시 */
    }
} 