/* d:\NMLQuotationSytem\nmlquotesystem\public\css\styles.css */
body {
    font-family: 'Inter', sans-serif;
}
.view {
    display: none;
}
.view.active {
    display: block;
}
.print-only {
    display: none;
}
@media print {
    body {
        font-family: 'Times New Roman', Times, serif;
        font-size: 11pt;
    }
    body * {
        visibility: hidden;
    }
    .print-container, .print-container * {
        visibility: visible;
    }
    .print-container {
        position: relative;
        display: flex;
        flex-direction: column;
        min-height: 98vh; /* Approximate page height */
    }
    .print-content-area {
        flex-grow: 1; /* Allow content to grow and push footer */
    }
    #print-footer-container {
        flex-shrink: 0; /* Prevent footer from shrinking */
    }
    .no-print {
        display: none !important;
    }
    .print-only {
        display: block !important;
    }
    #print-header-container, #print-footer-container {
        display: block;
        width: 100%;
    }
    #print-header-container img, #print-footer-container img {
            width: 100%;
    }
    tr, .signature-block {
        page-break-inside: avoid;
    }
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
