/*
 * @description Custom stylesheet
 * @file        print.css
 * @author      Md Nur Un Nabi
 * @contact     tutulb21@gmail.com
 * @copyright   Copyright 2011-2025 Esteem Soft Limited.
*/
@media print  {
    body {
        font-family: var(--font-family);
    }
    /* Datatable Search Box */
    div.dt-container div.dt-search input {
        display: none!important;
    }
    div.dt-container > div.row:first-child {
        display: none;
    }
    /* Report Print Header Section */
    .printHeaderTitle h3{
        margin-bottom: 0px;
    }
    .printHeaderTitle h4{
        font-size: 14px;
        margin-bottom: 1rem!important;
    }
    .printHeaderTitle .print-info p{
        font-size: 10px;
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .avoid {
        display: none;
    }

    /* label{
        font-weight: 600;
    }
    .printing_option {
        display: block;
    }

    .col-lg-6 {
        width: 50%;
        float: left;
    }

    body {
        background-color: #fff;
        color: #333;
        font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
        font-size: 11px;
        line-height: 1.22857;
    }
    .col-md-2{
        width: 20%;
        float: left;
    }
    .col-md-3{
        width: 25%;
        float: left;
    }
    .col-md-4{
        width: 33.33333%;
        float: left;
    }
    .form-control {
        font-size: 12px;
    }
    .input-group-btn .btn {
        padding: 12px 12px;
    }
    .table thead > tr > th, .table tbody > tr > th, .table tfoot > tr > th, .table thead > tr > td, .table tbody > tr > td, .table tfoot > tr > td {
        border-top: 1px solid #ddd;
        line-height: 1.1;
        font-family: "Arial",Helvetica,sans-serif;
        padding: 4px;
        vertical-align: top;
        font-size: 10px;
    }
    h4 {
        margin-top: 0;
        margin-bottom: 0;
        font-size: 12px;
    }
    .form-group label.radio-inline{
        display: inline!important;
    }
    .panel-info>.panel-heading {
        color: #fff!important;
        background: linear-gradient(145deg,#68ccdf,#92dae8)!important;
    }
    .panel-info>.panel-heading >i{
        color: #fff!important;
    }
    .table thead > tr > th, .table tbody > tr > th, .table tfoot > tr > th, .table thead > tr > td, .table tbody > tr > td, .table tfoot > tr > td {
        border-top: 1px solid #ddd;
        line-height: 1.1;
        padding: 6px;
        vertical-align: top;
    } */

    /* Hide Anchor tag link value in print view */
    a[href]:after {
        visibility: hidden;
        display: none;
    }

}


