﻿@media print {
    /* General page styles */
    body {
        margin: 0;
        padding: 0;
        background: white;
    }

    /* Hide elements you don't want to print */
    .no-print, .mud-dialog-actions {
        display: none;
    }

    /* Ensure proper size for the printable content */
    #receiptArea {
        width: 190mm !important;
        height: auto !important;
        padding: 20mm !important;
        margin: 0 !important;
        overflow: visible !important;
    }

    /* Remove unwanted background colors */
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
    }

    /* Avoid breaking important content across pages */
    .row, div, span {
        page-break-inside: avoid;
    }

    /* Custom styles for A4 size */
    @page {
        size: A4;
        margin: 20mm;
    }
}
