/* Button styles */
.print-order {
    display: inline-block;
    margin-top: 10px !important;
}

.print-order.loading {
    opacity: 0.7;
    cursor: wait;
}

/* Admin order list print icon */
.widefat .column-order_actions .print.print-order::after {
    font-family: Dashicons;
    content: "\f122";  /* printer icon */
}

/* Print media styles */
@media print {
    body * {
        visibility: hidden;
    }
    
    .order-print-wrapper,
    .order-print-wrapper * {
        visibility: visible;
    }
    
    .order-print-wrapper {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    
    @page {
        size: auto;
        margin: 0.5cm;
    }
}