/* File: assets/css/print.css */

/* Các quy tắc này chỉ được áp dụng khi người dùng thực hiện hành động in trang */
@media print {

    /* Thiết lập lề và font chữ cơ bản cho trang in */
    @page {
        margin: 1.5cm;
    }

    body {
        font-family: 'Times New Roman', Times, serif;
        background-color: #fff !important;
        color: #000 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* Ẩn các thành phần không cần thiết trên mọi trang */
    header,
    footer,
    .future-column,
    .header-right,
    .admin-nav,
    .form-section,
    #print-btn,
    #print-search-btn,
    .no-print
     {
        display: none !important;
    }
    
    /* THAY ĐỔI: Ẩn cột Hành động trong bảng quản trị khi in */
    .events-table .action-buttons,
    .events-table th:last-child,
    .events-table td:last-child {
        display: none !important;
    }


    /* Thiết lập lại bố cục cho các thành phần chính được giữ lại */
    .container,
    .content-wrapper,
    .today-column,
    .today-section,
    .search-results-container,
    .admin-container,
    .admin-layout-vertical,
    .events-section {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
        border: none !important;
        background: none !important;
    }

    /* Định dạng cho tiêu đề của khu vực được in (VD: HÔM NAY) */
    .section-header, .search-results-header {
        text-align: center;
        border-bottom: 2px solid #000;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .section-title,
    .section-date,
    .search-results-header .form-title {
        font-size: 16pt;
        font-weight: bold;
        color: #000;
        float: none !important;
        display: block;
    }
    .section-title,
    .search-results-header .form-title {
        font-size: 18pt;
    }

    /* Định dạng cho từng mục lịch công tác */
    .schedule-item {
        border: 1px solid #ccc;
        border-left: 3px solid #000;
        padding: 10px;
        margin-bottom: 15px;
        page-break-inside: avoid; /* Quan trọng: Tránh ngắt trang giữa chừng một sự kiện */
    }

    .schedule-item div,
    .schedule-item strong,
    .schedule-item i {
        color: #000 !important;
        font-size: 12pt;
    }

    .schedule-item strong {
        display: inline-block;
        min-width: 90px;
    }
    
    .schedule-item i {
        display: none; /* Ẩn các biểu tượng icon khi in */
    }

    /* Định dạng riêng cho trang tìm kiếm khi in */
    .search-form-container {
        display: none !important;
    }

    .events-table {
        margin: 0;
    }
    .events-table th, .events-table td {
        color: #000 !important;
    }
    .events-table tr:nth-child(even) {
        background-color: #f2f2f2 !important;
    }

    .no-events {
        text-align: center;
        font-style: italic;
        padding: 20px 0;
    }
}
