.table-scroll {
    max-height: 84vh;
    overflow: auto;
}

/* first header row */
.table-scroll thead tr:first-child th {
    position: sticky;
    top: 0;
    z-index: 3;
    background: #fff;
}

/* second header row */
.table-scroll thead tr:nth-child(2) th {
    position: sticky;
    top: 38px; /* height of first header row */
    z-index: 2;
    background: #fff;
}

.tooltip-inner ul {
    text-align: left;
    padding-left: 1rem;
    max-width: 300px;
}

.link-hover-primary:hover {
    color: var(--bs-primary) !important;
    text-decoration: underline;
}

.no-arrow::after {
    display: none;
}

@media print {
    @page {
        margin: 0;
    }

    .print-block div, .print-block table th, .print-block table td {
        font-size: 10pt !important;
    }

    body {
        margin: 0;
        font-size: 12pt;
    }

    .no-print {
        display: none !important;
    }
}
