@media print {

    /* Hide everything on page */
    body * {
        visibility: hidden !important;
    }

    /* Remove sidebar completely (Moltran left menu) */
    .left, .sidebar, .side-menu, .topbar, .navbar-default {
        display: none !important;
    }

    /* Show only the delivery note */
    #print-container, #print-container * {
        visibility: visible !important;
    }

    /* Make it centered and full width */
    #print-container {
        position: absolute;
        left: 0;
        top: 0;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 20px !important;
    }

    /* Hide print button */
    .print-btn {
        display: none !important;
    }

    /* Remove body background & padding that shifts print */
    body {
        background: #fff !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Moltran wrapper fix */
    .content-page, .content, .container {
        margin: 0 !important;
        padding: 0 !important;
    }
}