/*
quark-dark-side-tables.css

CSS for nicer tables. Should be disabled, when working with Datatables.

(c)2019-2020 Harald Schneider
*/

/* Nicer tables */

.tbl-alt-rows tr:nth-of-type(odd) {
    background-color:#f6f6f6;
}
table tr:nth-of-type(odd) {
    background-color:#f6f6f6;
}
table th {
    background-color:#d8d8d8;
}
table th, td {
    padding: 8px;
    border-color: #c0c0c0;
    border: 1px solid;
    font-size: 0.95em !important;
    vertical-align: text-top;
}
table tbody tr:hover td {
    background: rgba(114, 185, 233, 0.36);
}