a {
    text-decoration: none;
}
table {
    border: 1px solid var(--stripe-color);
}
table thead {
    background: var(--light-gray);
}

table thead th {
    border-bottom: none;
    color: var(--darkblue);
    padding: 12px 8px !important;
}

table td {
    border-bottom: none;
    color: var(--darkblue);
    padding: 12px 8px !important;
    font-size: 1em;
    vertical-align: middle;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background: var(--stripe-color);
}

.container > h1 {
    margin-bottom: 40px;
}

.container .btn {
    padding: 6px 12px;
    margin: unset;
}

.bg-dark {
    background-color: var(--darkblue) !important;
}


.db-toggle input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
    margin: 0;
}

.db-toggle label {
    cursor: pointer;
    text-indent: -9999px;
    width: 80px;
    height: 35px;
    background: #f3f3f3;
    /*display: block;*/
    border-radius: 40px;
    position: relative;
}

.db-toggle label:after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 25px;
    height: 25px;
    background: var(--darkblue);
    border-radius: 50%;
    transition: 0.3s;
}

.db-toggle input:checked + label {
    background: #f3f3f3;
}

.db-toggle input:checked + label:after {
    left: calc(100% - 5px);
    transform: translateX(-100%);
}

.db-toggle label:active:after {
    width: 30px;
}

.db-toggle > div {
    /*font-weight: var(--unnamed-font-weight-normal);*/
    /*font-size: var(--unnamed-font-size-18);*/
    color: #656565;
}

.db-crud-aktion {
    text-align: center;
    width: 30px;
    white-space: nowrap;
}

.db-crud-aktion:hover a > * {
    color: var(--lightblue);
}

.db-crud-aktion:hover a > img {
    filter: invert(28%) sepia(90%) saturate(1796%) hue-rotate(178deg) brightness(99%) contrast(101%);
}

.db-crud-aktion a {
    text-decoration: none;
}

.db-crud-aktion a i, .db-crud-aktion a img {
    color: var(--darkblue);
    display: block;
    margin: auto;
    max-width: 32px;
    max-height: 32px;
}

.db-crud-aktion a span {
    font-size: 10px;
}

#navbarDropdown::after {
    display: none;
}

.db-mod-userblock {
    min-height: 117px;
    background-color: #f6f6f6;
    cursor: pointer;
    padding: 20px;
    margin: 3px;
}

.db-mod-userblock.active {
    box-shadow: 0px 0px 10px #1281C3;
}

.db-mod-lastmsg {
    font-size: 0.8em;
    color: var(--gray);
    max-height: 70px;
    overflow: hidden;
}