
/* List Table classes */
    .table > :not(caption) > * > * {
        padding: 0.3rem 0.5rem;
    }

    .table {
        width: 100% !important;
    }

    .table-striped tbody tr:nth-of-type(odd) {
        background-color: #6da8eb0d;
    }

    .table-striped tbody tr:nth-of-type(odd).card {
        background-color: #6da8eb0d !important;
        border: none;
    }

    .mobile.table-striped tbody tr td {
        border: none;
    }

    .table-hover tbody tr:hover {
        background-color: rgba(0, 0, 0, 0.075) !important;
    }

    .table-shadow tbody tr:hover {
        box-shadow: 0 0 4px #2b75e4b4 !important;
    }

    .table.table-shadow > thead > tr > th {
        line-height: unset;
    }


    .scroll-horizontal {
        overflow-x: auto !important;
        display: block;
    }

    @media print {
        .page-body {
            margin-left: 0 !important;
            width: 100%;
        }
    }

    .table thead tr a, .table thead tr th {
        position: relative;
    }

    .table thead tr a {

    }

    .table thead tr th.orderable a::after {
        position: absolute;
        color: grey;
        font-size: 0.8em;
        margin-top: 2px;
        height: 8px;
        /*font-family: "Font Awesome Free";*/
    }

    /*.table thead tr th.orderable a::after {*/
    /*    content: "\f0dd";*/
    /*    content: "↓↑";*/
    /*}*/


    .table thead tr th.desc a::after {
        content: "↓";
        color: red;
    }

    .table thead tr th.asc a::after {
        content: "↑";
        color: red;
    }
