table.default {
    border: 1px solid #E0E0E0;
}
table.default.no-border {
    border: 0 none;
}

table.default.no-background td {
    background-color: transparent;
}

table.default caption {
    font-size: 1.2em;
    text-align: left;
    font-weight: bold;
}

table.default > thead {
    font-size: 1.1em;
    font-weight: bold;
}

table.default > thead > tr > th,
table.default > tfoot > tr > td {
    color: #FFFFFF;
    text-align: left;
    padding: 2px;
    vertical-align: middle;
    border: 1px solid #17365C;
    background: #00234B;
}

table.default > thead > tr.hover-underline > th:hover {
    text-decoration: underline;
}

table.default > thead > tr > th.clickable {
    cursor: pointer;
}
table.default > thead > tr > th.clickable:hover {
    text-decoration: underline;
}
/*
table.default > thead > tr > th.sortable {
    background-image: url('/gfx/icons/bullet_arrow_up.png');
    background-repeat: no-repeat;
    background-position: right center;
}
table.default > thead > tr > th.sortable-up {
    background-image: url('/gfx/icons/bullet_arrow_up.png');
}
table.default > thead > tr > th.sortable-down {
    background-image: url('/gfx/icons/bullet_arrow_down.png');
}
*/
table.default > thead > tr > th.sortable img {
    float: right;
}
table.default > thead > tr.pointer > th {
    cursor: pointer;
}

table.default > thead > tr.image-right > th > img {
    position: relative;
    float: right;
    top: 6px;
    right: 2px;
}

table.default > tbody.center-col0 > tr > td:first-child {
    text-align: center;
}

table.default > tbody > tr > td {
    padding: 2px;
    vertical-align: middle;
    background-color: #F5F5F5;
    border: 1px solid #DDDDDD;
}

table.default > tbody > tr:first-child > td {
    padding-top: 6px;
}

table.default.no-border > tbody > tr > td {
    border: 0 none;
}
table.default.no-header > tbody > tr:first-child > td {
    padding-top: 2px;
}

table.default > tbody > tr.pointer {
    cursor: pointer;
}

table.default > tbody > tr.highlight > td {
    background-color: #b3e08e !important;
    font-weight: bold;
    color: #000000;
}

table.default > tbody > tr.hover:hover td {
    background-color: #7AABDE;
    color: #FAFAFA;
    border-color: #8DACC3;
}

table.simple-grid {
}
table.simple-grid thead tr {
    border-top: 1px solid #C0C0C0;
}
table.simple-grid thead tr th {
    text-align: left;
    padding: 0 6px;
}
table.simple-grid tbody tr {
    border-bottom: 1px solid #C0C0C0;
}
table.simple-grid tbody tr:first-child {
    border-top: 1px solid #C0C0C0;
}

table.simple-grid tbody tr td {
    padding: 0 6px;
}
table.simple-grid.border-column tbody tr td {
    border-right: 1px solid #C0C0C0;
}
table.simple-grid tbody tr td:first-child {
    border-right: 1px solid #C0C0C0;
}

table.simple-grid.no-border-tb thead tr:first-child {
    border-top: none;
}
table.simple-grid.no-border-tb tbody tr:last-child {
    border-bottom: none;
}
table.simple-grid tbody tr td.border-right {
    border-right: 1px solid #C0C0C0;
}

table.clean-table {
    width: 100%;
    border-spacing: 0.2rem;
    border-collapse: separate;
}

table.clean-table th {
    border-bottom: 2px solid #C0C0C0 !important;
}

table.clean-table th,
table.clean-table td {
    margin: 1rem;
    padding: 0.5rem 0.3rem;
    font-size: 1.1rem;
    text-align: left;
    border-bottom: 1px solid #C0C0C0;
}

table.clean-table th {
    font-weight: bold;
}

table.clean-table.sortable th:hover {
    cursor: pointer;
    transition: color 0.2s;
    color: #888888;
    user-select: none;
}

table.clean-table.sortable th.asc:after,
table.clean-table.sortable th.desc:after {
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
    margin-left: 4px;
}

table.clean-table.sortable th.asc:after {
    content: '\f15e';
}

table.clean-table.sortable th.desc:after {
    content: '\f881';
}