body {
    background-color: #333;
    color: #eee;
}

hr {
    border: 1px solid #aaa;
}

#backdrop {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    filter: opacity(.75);
    z-index: 99;
}
#dialog-container {
    z-index: 100;
}
#ldr-container {
    display: none;
    z-index: 101;
}

td {
    border-bottom: none !important;
}

.fleft {
    float: left;
}
.fright {
    float: right;
}

.icon-container {
    display: inline;
}

.dialog {
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem 1rem 1rem;
    border-radius: .5rem;
    min-width: 20rem;
    max-width: 90%;
}
.dialog-title {
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
.dialog-close-container {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.dialog-theme-info {
    background-color: #444444;
}
.dialog-theme-error {
    background-color: #914e4e;
}
.dialog-theme-warning {
    background-color: #817047;
}

.cld-presence-block {
    display: inline-block;
    padding: .5rem .5rem .5rem .5rem;
    height: 100%;
    min-width: 1rem;
    text-align: center;
    color: #111;
    cursor: pointer;
    border: 1px solid var(--bs-table-bg);
}
.cld-presence-block:hover {
    border: 1px solid #aaa;
}
.cld-activerow {
    background-color: #ff21;
}
.cld-activerow td {
    background-color: inherit;
}

.pres-dia-head {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pres-dia-details {
    text-align: center;
}
.pres-dia-msg {
    border: 1px solid #ddd;
    border-radius: .5rem;
    padding: .33rem .33rem .33rem .33rem;
}
.pres-dia-meta {
    color: #aaa;
}
.pres-dia-icon {
    width: 2rem;
    height: 2rem;
}
.pres-dia-type {
    font-size: 1.4rem;
    font-weight: bold;
}


.req-tbl-type {
    text-align: center;
}
.req-dia-head {
    text-align: center;
}
.req-dia-icon {
    width: 2rem;
    height: 2rem;
}
.req-dia-info {
    color: #afafaf;
}
.req-dia-msg-nomessage {
    color: #ccc;
}

.req-status-res {
    fill: #1e1;
    width: 2rem;
    height: 2rem;
}
.req-status-unres {
    fill: #e11;
    width: 2rem;
    height: 2rem;
}

.txt-primary {
    font-size: 2rem;
    color: #fff;
}
.txt-secondary {
    font-size: 1rem;
    color: #bbb;
}

.system-info {
    text-align: right;
}

.btn-icon {
    fill: #fff;
}

.status-online {
    color: #19d119;
}
.status-offline {
    color: #aaa;
}

.fg-black {
    color: #000;
}
.fg-white {
    color: #fff;
}

.fix-center {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}
.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}
.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}
.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}
.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}
.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}
.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}
.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}
.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}
@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}