body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    background-color: white;
    color: black;
    scrollbar-width: thin;
}
select {
    width: 120px;
    height: 18px;
    border-width: 1px;
    border-color: rgb(181, 180, 180);
    color: black;
    background-color: #eee;
    font-size: 13px;
    color: grey;
}
input[type="color"] {
    width: 50px;
    height: 24px;
    background-color: #f0f0f0;
    border-width: 1px;
    border-color: rgb(181, 180, 180);
    padding: 0px;
}
input[type="number"] {
    width: 65px;
    height: 18px;
    background-color: #ffffff;
    border-width: 1px;
    border-color: rgb(181, 180, 180);
    padding: 0px;
    color: grey;
    font-size: 14px;
    font-weight: bold;
    padding-left: 3px;
}
textarea {
    font-size: 11px;
    resize: none;
    background-color: #ffffff;
}
input[type="text"] {
    width: 120px;
    height: 18px;
    font-size: 14px;
    resize: none;
    background-color: white;
    color: grey;
    border-color: rgb(181, 180, 180);
}
canvas {
    border-style: none;
    padding: 0;
    margin: 0;
}
/* *-------- --------------------------------------*/
/* *--------                windows/containers   --*/
/* *-------- --------------------------------------*/
.draggable-window {
    background-color: white;
    border-radius: 4px;
    border-style: solid;
    border: 2px 1px 1px 1px;
    border-color: #c0c0c0;
    -webkit-box-shadow: 3px 4px 3px 0px #000000;
    box-shadow: 3px 4px 3px 0px #000000;
}
.draggable-window-titlebar {
    background-color: #00529c;
    font-size: 16px;
    text-align: center;
    color: white;
}
.bordered-pane {
    background-color: white;
    border-style: solid;
    border-width: 1px;
    border-color: #c0c0c0;
}
.unbordered-pane {
    background-color: #f8f8f8;
    border-style: none;
}
.info-pane {
    background-color: #f0f0f0;
    border-style: solid;
    border-width: 1px;
    border-color: black;
    border-radius: 8px;
}
.bottom-pane {
    background-color: white;
    border-style: solid;
    border-width: 0px 1px 0px 1px;
    border-color: darkgrey;
}
.mini-pane {
    background-color: #d0d0d0;
}
.mid-pane {
    border-color: black;
    border-width: 2px 0px 2px 0px;
    border-style: solid;
}
.sidebars {
    background-color: white;
}
.widget-pane {
    background-color: #edeef0;
    border-style: solid;
    border-width: 3px;
    border-radius: 8px;
    border-color: #c0c0c0;
}
.leave-widget {
    background-color: white;
    border-style: solid;
    border-width: 3px;
    border-radius: 8px;
    border-color: #7bc466;
}
.ncd-widget {
    background-color: white;
    border-style: solid;
    border-width: 3px;
    border-radius: 8px;
    border-color: #f4793b;
}
.bg-pane {
    background-color: #dadce1;
}
.lgnd-box {
    border-style: solid;
    border-width: 1px;
    border-color: black;
    width: 40px;
    height: 40px;
}
.top-border {
    border-top-style: solid;
    border-width: 1px;
    border-color: black;
}
.avg-handle {
    width: 240px;
    height: 20px;
    background-color: #00000010;
    border-style: solid;
    border-width: 1px;
    border-color: black;
    cursor: pointer;
    -webkit-box-shadow: 3px 4px 3px 0px #000000;
    box-shadow: 3px 4px 3px 0px #000000;
}
/* *-------- --------------------------------------*/
/* *--------                 BUTTONS             --*/
/* *-------- --------------------------------------*/
.icon-button {
    width: 32px;
    height: 32px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: contain;
    border-width: 0px;
    outline: none;
    transition: 0.25s;
    cursor: pointer;
}
.icon-button:hover {
    background-color: cornsilk;
}
.icon-button:active {
    transform: translateY(3px);
}
.standard-button {
    width: 120px;
    height: 22px;
    background-color: #ffffff;
    border-radius: 6px;
    -webkit-box-shadow: 2px 2px 1px 0px #00000080;
    box-shadow: 2px 2px 1px 0px #00000080;
    color: #00529c;
    font-size: 13px;
    border-width: 1px;
    cursor: pointer;
}
.standard-button:hover {
    background-color: #bfdfd7;
    font-weight: bold;
    border-width: 2px;
}
.standard-button:active {
    transform: translateY(3px);
}
.text-button {
    width: 160px;
    height: 22px;
    background-color: transparent;
    border-style: none;
    color: #00529c;
    font-size: 12px;
    cursor: pointer;
    text-align: left;
}
.text-button:hover {
    text-decoration: underline;
}
.text-button:active {
    transform: translateY(3px);
}
/* *-------- --------------------------------------*/
/* *--------                 Text/Labels        --*/
/* *-------- --------------------------------------*/
.tooltip {
    background-color: white;
    font-size: 18px;
    color: black;
}
.guideline {
    padding: 5px;
    background-color: white;
    font-size: 18px;
    color: black;
    border-style: solid;
    border-radius: 6px;
}
.small-title {
    color: black;
    font-size: 14px;
    font-weight: bold;
}
.med-title {
    color: black;
    font-size: 16px;
    font-weight: bold;
}
.std-label {
    color: #474d56;
    font-size: 14px;
}
.hoverable-text {
    color: black;
    font-size: 14px;
    font-weight: bold;
}
.hoverable-text:hover {
    color: #808080;
}
/* *-------- --------------------------------------*/
/* *--------                menued window        --*/
/* *-------- --------------------------------------*/
.sidemenu {
    background-color: transparent;
    width: 120;
    height: 24;
    border-width: 0px;
    outline: none;
    font-size: 13px;
    font-weight: bold;
    color: grey;
    transition: 0.25s;
    text-align: left;
}
.sidemenu:hover {
    transform: scale(1.1);
}
.sidemenu:active {
    transform: translateY(3px);
}
.sidemenu-selected {
    background-color: transparent;
    width: 120;
    height: 24;
    border-width: 0px;
    outline: none;
    font-size: 14px;
    font-weight: bold;
    color: black;
    transition: 0.25s;
    text-align: left;
    text-decoration: underline;
}
.sidemenu-selected:hover {
    transform: scale(1.1);
}
.sidemenu-selected:active {
    transform: translateY(3px);
}
/* *-------- --------------------------------------*/
/* *--------                MENU     -------------*/
/* *-------- --------------------------------------*/
.menu-item {
    background-color: #ffffff;
    color: #202020;
    cursor: pointer;
    font-size: 12px;
    border-width: 1px;
    border-color: #808080;
    text-align: left;
    padding: 1px;
    z-index: 50;
}
.menu-item:hover {
    background-color: #9fcdf3;
    color: black;
}
.menu-item:active {
    transform: translateX(2px);
}
/* *-------- --------------------------------------*/
/* *--------                user messages        --*/
/* *-------- --------------------------------------*/
.user-message {
    color: #00529c;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
.error-message {
    color: red;
    background-color: white;
    font-size: 14px;
    font-weight: bold;
}
.big-message {
    background-color: white;
    border-color: grey;
    border-style: solid;
    border-width: 2px;
    margin: 5px;
    padding: 5px;
    color: #006eb0;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    top: 45%;
    left: 40%;
    z-index: 100;
}
/* *-------- --------------------------------------*/
/* *--------             Selectable Lists        --*/
/* *-------- --------------------------------------*/
.sel-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.sel-list li {
    cursor: pointer;
    font-size: 12px;
    border: 2px solid #ffffff;
    margin-top: -2px; /* Prevent double borders */
    background-color: #999fa880;
    padding: 2px;
    text-decoration: none;
    color: black;
    display: block;
}
.sel-list li:hover {
    background-color: #1faa92;
    color: white;
}
.sel-list li:active {
    transform: translateY(2px);
}
/* *-------- --------------------------------------*/
/* *--------             System Monitor           --*/
/* *-------- --------------------------------------*/
.disable-button {
    background-color: #202020;
    border-radius: 3px;
    border: none;
    transition-duration: 0.25s;
}
.disable-button:hover {
    background-color: #f00000;
}
.disable-button:active {
    background-color: lightblue;
    color: #b9f5fc;
}
.sysmsg {
    color: black;
    font-size: 10px;
}
/* *-------- --------------------------------------*/
/* *--------                 Top Toggles          --*/
/* *-------- --------------------------------------*/
.top-toggle-on {
    background-color: white;
    color: #00529c;
    font-weight: bold;
    border-style: solid;
    border-width: 1px;
    border-color: lightgrey;
    border-radius: 0px 0px 12px 12px;
    font-size: 16px;
}
.top-toggle-off {
    background-color: #dadce1;
    color: #999fa8;
    border-style: none;
    border-radius: 0px 0px 12px 12px;
    font-size: 16px;
}
.top-toggle-off:hover {
    color: black;
    font-weight: bold;
}
.top-toggle-off:active {
    transform: translateY(3px);
}
/* *-------- --------------------------------------*/
/* *--------                Animations/Loader   --*/
/* *-------- --------------------------------------*/
.loader-fast {
    margin: 0px;
    padding: 0px;
    border: 5px solid black;
    border-radius: 50%;
    border-top: 5px solid white;
    border-bottom: 5px solid white;
    animation: spinner 2s linear infinite;
}
.loader-slow {
    margin: 0px;
    padding: 0px;
    border-radius: 50%;
    border: 5px solid black;
    border-left: 5px solid white;
    border-right: 5px solid white;

    animation: spinner 4.5s linear infinite;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.anim-message {
    font-size: 64px;
    color: white;
    opacity: 0.4;
    width: 100%;
    text-align: center;
    top: 20%;
}
