﻿table.dataTable tbody tr:nth-child(odd) {
    background-color: #F9F9F9;
}

table.dataTable tbody tr:nth-child(even) {
    background-color: #FFFFFF;
}

table.dataTable tbody tr:nth-child(odd):hover {
    background-color: #F9F9F9;
}
table.dataTable tbody tr:nth-child(even):hover {
    background-color: #FFFFFF;
}

table.dataTable,
table.dataTable.no-footer {
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    overflow: hidden;
}

    table.dataTable thead th,
    table.dataTable thead td {
        border-bottom: 1px solid #ccc;
    }

    table.dataTable th,
    table.dataTable td {
        padding: 8px 10px;
    }

div.dataTables_filter input,
div.dataTables_length select {
    display: inline-block;
    width: unset;
}

.pagination > .active > a,
.pagination > .active > a:link,
.pagination > .active > a:visited,
.pagination > .active > a:hover
.pagination > .active > a:active {
    background-color: #154D5E;
    color: #FFFFFF;
}

.headerGroup {
    background-color: #EAEAEA;
}

.headerGroup-left-border {
    border-left: 1px solid #ccc;
}

.detailsPanel {
    margin-left: 50px;
    padding: 30px;
    background-color: #EAEAEA;
}