﻿
@media print {
    .no-print {
        display: none !important;
    }

    /*body * {
        visibility: hidden;*/ /* Ẩn tất cả các phần tử trên trang */
    /*}*/

    #invoiceForm, #invoiceForm * {
        visibility: visible; /* Chỉ hiển thị phần tử có id là invoiceForm */
    }

    /*#invoiceForm {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }*/
}


.invoice-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border: 1px solid #ccc;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    max-width: 700px;
    width: 90%;
    z-index: 9999;
}

/* Tùy chọn: Màn hình mờ phía sau */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    display: none;
}


.invoice-modal > p {
    line-height:8px;
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.customer-info {
    flex: 1;
}

.invoice-image {
    margin-left: 20px;
}