@media print {
    .no-print {
        display: none !important;
    }
    
    /* Добавляем отступ для тела документа */
    body {
        margin: 0;
        padding: 0;
        position: relative;
        min-height: 100vh;
    }
    
    #table {
        width: 100% !important;
        margin: 0 !important;
        border-collapse: collapse !important;
        position: absolute;
        top: 160px;
        left: 0;
        width: 100% !important;
        padding: 0 !important;
    }
    #table1 {
        width: 100% !important;
        margin: 0 !important;
        border-collapse: collapse !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        padding: 0 !important;
    }
    
    /* Скрываем info-card на всех страницах */
    .info-card {
        display: none !important;
    }
    
    /* Создаем специальный блок для первой страницы */
    .print-header-first-page {
        display: block !important;
        margin-bottom: 200px;
        page-break-after: avoid;
        background: #f8f9fa;
        padding: 15px;
        border-radius: 8px;
        position: relative;
        z-index: 10;
    }
    
    
    /* Запрещаем разрыв внутри строк таблицы */
    tr {
        page-break-inside: avoid;
        page-break-after: auto;
    }
    
    thead {
        display: table-header-group;
    }
}

/* Для экрана скрываем блок печати */
.print-header-first-page {
    display: none;
}

.hidden-row {
    display: none;
}
