 /* modal */

  /* Add this CSS to your stylesheet or in a <style> tag in the head of your HTML */

  .billmodal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.billmodal-content {
    position: absolute;
    top: 25%;
    left: 35%;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    overflow: auto;
}


.closeModal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
    color: red;
}

.closeModal:hover {
    color: #000;
}

.billTable tr, .billTable th, .billTable td{
    border: 1px solid black;
    padding: 10px;
    text-align: center;
}

.column-border {
    border: 1px solid black;
    padding: 10px;
    text-align: center;
}

.print-Btn {
    background: #fff;
    border: 1px solid #ff6a32;
    color: #ff6a32;
    padding: 5px 10px 5px 10px;
    border-radius: 10px;
}

.print-Btn:hover {
    background: #ff6a32;
    color: #fff;
}


/* print media query */

@media print {
    body *{
        visibility: hidden;
    }

    .billmodal-content * {
        visibility: visible;
    }

}