.isDeleted1 {color:darkred;}
.isActive0 {color:darkred;}
.amount {text-align: right !important}

.googleLogin img {width:20%;}
.googleLogin img:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.flash {padding:2em;font-weight: bold}

span.pcts {font-size: 50%;vertical-align: top;min-width:2.6em;display: inline-block;}
span.red {color:red}
span.green {color:green}

table#insert td{
    padding: 0.3em;
}

h1 {padding:0.5em;}

table.dataTable.hover > tbody > tr:hover > *, table.dataTable.display > tbody > tr:hover > * {
    box-shadow: inset 0 0 0 9999px rgba(255, 255, 255, 0.35) !important;
}

table.dataTable.hover > tbody > tr.odd {
    background-color: rgba(255, 255, 255, 0.05);
}

.dataTables_filter label { color:var(--white) !important;}
.dataTables_length label { color:var(--white) !important;}

table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
}

table tr {
    /*background-color: #f8f8f8;*/
    border: 1px solid #ddd;
    padding: .35em;
}

table th,
table td {
    padding: .625em;
    text-align: center;
}

table th {
    font-size: .85em;
    letter-spacing: .1em;
}

:root{
    --white: #c9c9c9;
    --black: #36383F;
    --grey: #85888C;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Poppins", sans-serif;
    color: var(--white);
}

/* Header */
.header{
    background-color: var(--black);
    box-shadow: 1px 1px 5px 0px var(--grey);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1;
}

.side-menu {
    display: none;
}

.header ul{
    list-style: none;
}

.header a{
    text-decoration: none;
}

/* Logo */
.logo{
    display: inline-block;
    color: var(--white);
    font-size: 60px;
    margin-left: 10px;

}

/* Nav menu */
.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: var(--black);
    overflow: hidden;
}

.menu a{
    display: block;
    padding: 30px;
    color: var(--white);
}

.menu a:hover{
    background-color: var(--grey);
}

.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}

a:link, a:visited {
    color: inherit;
}
