body {
    font-family: 'Inter', sans-serif;
    padding-top: 80px; /* Отступ для липкого хедера */
}
.order-block-results {
    display: none; /* Скрыты по умолчанию, показываются после расчета */
}

/* Стили для печати */
@media print {
    body {
        padding-top: 0; /* Убираем отступ при печати */
    }
    body * {
        visibility: hidden;
    }
    #printReport, #printReport * {
        visibility: visible;
    }
    #stickyHeader {
        display: none; /* Скрываем хедер при печати */
    }
    #printReport {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        padding: 20px;
        font-size: 12px;
    }
    #printReport h2, #printReport h3, #printReport h4 {
        font-size: 16px;
        font-weight: 600;
        margin-top: 16px;
        margin-bottom: 8px;
        border-bottom: 1px solid #000;
        padding-bottom: 4px;
    }
    #printReport .print-section {
        margin-bottom: 20px;
        page-break-inside: avoid;
    }
    #printReport .print-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    #printReport ul {
        list-style-type: none;
        padding-left: 0;
    }
    #printReport li {
        margin-bottom: 4px;
    }
    #printReport .batch-checkbox {
        margin-right: 8px;
        font-family: monospace; /* Для ровных квадратов */
    }
    /* Скрываем ненужное в отчете */
    .delete-order-btn, .opt-btn {
        display: none;
    }
}
