/*
    Tables in the style of those generated by Balsamic
*/
.balsamic-table {
    /* border: 2px solid black; */
    margin-bottom: 0px;
}

.balsamic-table > thead > tr > th {
    background-color: #c6c6c6;
    border-bottom: none !important;
    border-right: 1px solid #6c6c6c;
    cursor: pointer;
    font-size: 14px;
    padding-bottom: 2px !important;
    padding-left: 10px !important;
    padding-top: 2px !important;
    text-align: center;
    vertical-align: middle;
}

.balsamic-table > tbody > tr > td {
    border-bottom: none !important;
    border-right: 1px solid #6c6c6c;
    border-top: none !important;
    font-size: 14px;
    padding-bottom: 6px !important;
    padding-left: 10px !important;
    padding-top: 6px !important;
    vertical-align: middle;
}

.balsamic-table > tbody > tr:nth-child(odd) {
    background-color: #ececec;
}

.balsamic-table > tbody > tr.inactive {
    background: #c6c6c6 !important;
    color: #686868;
}

.balsamic-table > tfoot {
    background-color: #c6c6c6;
    border-top: 1px solid #6c6c6c;
    border-right: 1px solid #6c6c6c;
}


/* Table container will limit height of table */
.balsamic-table-container {
    border: 2px solid #616161;
    max-height: 450px;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-right: 0px !important;
    margin-bottom: 30px;
}


/* Highlighted columns when sorting */

.balsamic-table > tbody > tr:nth-child(odd) > td.sorting_td {
    background-color: #dbdbdb;
}
.balsamic-table > tbody > tr:nth-child(even) > td.sorting_td {
    background-color: #f4f4f4;
}
.balsamic-table > thead > tr > th.sorting_asc,
.balsamic-table > thead > tr > th.sorting_desc {
    background-color: #b7b7b7;
}
