﻿/* ================= SCREEN ================= */
#printArea {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

/* ================= PRINT ================= */
@media print {

    /* 🔥 ID ko override karo */
    #printArea {
        visibility: visible !important;
        height: auto !important;
        overflow: visible !important;
    }

    body * {
        visibility: hidden;
    }

    #printArea,
    #printArea * {
        visibility: visible;
    }

    #printArea {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

    .receipt-table,
    .receipt-table th,
    .receipt-table td {
        border: 1px solid #000;
        border-collapse: collapse;
        padding: 4px;
        font-size: 11px;
    }

    .btn-print,
    .btn-save,
    .btn-cancel,
    input,
    select,
    .action-bar,
    .header-form,
    .totals-bar {
        display: none !important;
    }
}

/* Paper sizes */
.A4 {
    width: 210mm;
}

.THERMAL80 {
    width: 80mm;
}

.THERMAL58 {
    width: 58mm;
}

.A4 {
    font-size: 11px;
}

.THERMAL80 {
    font-size: 10px;
}

.THERMAL58 {
    font-size: 9px;
}

.right {
    text-align: right;
    margin-top: 6px;
}


.centerrow {
    text-align: center;
    margin-top: 8px;
   
}


.center {
    text-align: center;
    margin-top: 8px;
    font-weight: bold;
}
/* 🔴 Screen पर कभी मत दिखाओ */
.print-area {
    display: none;
}

/* ================= PRINT MODE ================= */
@media print {

    body * {
        visibility: hidden;
    }

    .print-area,
    .print-area * {
        visibility: visible;
    }

    .print-area {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
        padding: 10px;
    }

        /* ---------- A4 ---------- */
        .print-area.A4 {
            width: 210mm;
            font-size: 12px;
        }

        /* ---------- Thermal 80mm ---------- */
        .print-area.THERMAL80 {
            width: 80mm;
            font-size: 11px;
        }

        /* ---------- Thermal 58mm ---------- */
        .print-area.THERMAL58 {
            width: 58mm;
            font-size: 10px;
        }

    table.print-table {
        width: 100%;
        border-collapse: collapse;
    }

        table.print-table th,
        table.print-table td {
            border-bottom: 1px dashed #000;
            padding: 3px 0;
            text-align: left;
        }
}




