.datagridContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    flex-grow: 1;
    overflow: hidden;
    border-radius: 4px;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.01071em;
    outline: none;
    -webkit-box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
}

.hidePrintable, .hidePrintable * {
    display: none;
}

@media print {
    body * {
        visibility: hidden;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    .hidePrintable, .hidePrintable * {
        display: block!important;
    }

    .printable, .printable * {
        visibility: visible;
    }
    .notPrintable, .notPrintable *{
        display: none !important;
        width: 0;
        height: 0;
    }

    header, main, footer, .preFooter {
        width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .printable {
        display: block;
        position: absolute;
        top : 0!important;
        left: 0!important;
        width: 100vw!important;
    }
    .columnGrid {
        word-break: break-all !important;
        white-space: normal !important;
        line-height: 1.2 !important;
    }
}

.datagridHeader {
    display: grid;
    gap: 0px 0.37rem;
    border-bottom: 1px solid rgb(81, 81, 81);
    align-items: center;
    min-height: 56px;
    max-height: 56px;
    overflow: hidden;
    padding: 0px 0.75rem;
    background-color: rgba(6, 2, 43, 0.85) !important;
    color: #fff;
}

.datagridHeader.variant-compact {
    min-height: 38px !important;
    max-height: 38px !important;
}

.datagridHeader .headerColumn {
    position: relative;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 500;
}

.datagridHeader .headerColumn .dividerVerticalDatagrid {
    content: "";
    position: absolute;
    right: 0;
    width: 2px;
    border-radius: 8rem;
    height: 100%;
    background-color: rgb(81, 81, 81);
    margin-left: 0.37rem;
}

.datagridBody {
    display: grid;
    position: relative;
    break-inside: avoid;
    grid-template-columns: 1fr;
    background: #fff;
    width: 100%;
}

.datagridBody .columnRow:not(:last-child) {
    border-bottom: 1px solid rgb(224, 224, 224);
}

.columnRow {
    display: grid;
    gap: 0px 0.37rem;
    align-items: center;
    min-height: 52px;
    max-height: min-content;
    overflow: hidden;
    padding: 0px 0.75rem;
}

.columnRow.variant-compact {
    min-height: 36px !important;
}

.columnRow:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.columnGrid {
    position: relative;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 400;
}

.columnGrid.expand {
    word-break: break-all !important;
    white-space: normal !important;
    line-height: 1.2 !important;
}

.columnGrid.expand-soft {
    word-break: break-word !important;
    white-space: normal !important;
    line-height: 1.2 !important;
}

.columnGrid.rowActions {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.columnGrid.rowActions a {
    padding: 0;
    width: 32.4px;
    border-radius: 50%;
}

.datagridFooter {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    min-height: 56px;
    flex-direction: row;
    padding: 5px 0.75rem;
    border-top: 1px solid rgb(224, 224, 224);
}

.datagrigTotalizers {
    display: flex;
    flex-direction: column;
}

.datagridPagination {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: end;
}

.datagridFooter.variant-compact {
    min-height: 38px !important;
}

.paginationRows {
    display: flex;
    margin-left: 10px;
    gap: 2px;
}