body {
    margin: 0px;
    background-color: #FFF;
    font-size: 16px;
    font-family: Tahoma, Calibri, Sans-serif;
    overflow: hidden;
}

body>div#startup {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    text-align: center;
    font-size: 1.3em;
    z-index: 99;
    background-color: #AAA;
    padding-top: 100px;
}

body>div#startup>div#loading>span:first-child {
    margin-right: 15px;
}

body>div#startup>div#loading>span.block {
    border-radius: 4px;
    background-color: #DDD;
    display: inline-block;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    animation: loadingblock 1.5s infinite linear;
}

body>div#startup>div#loading>span.block.block-one {
    animation-delay: 0s;
}

body>div#startup>div#loading>span.block.block-two {
    animation-delay: 0.5s;
}

body>div#startup>div#loading>span.block.block-three {
    animation-delay: 1s;
}

@keyframes loadingblock {
    from {
        background-color: #FFF;
    }

    to {
        background-color: #555;
    }
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: white;
    border-radius: 8px;
    padding: 20px;
    width: 600px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.2s ease;
}

body>div.nettime>div.header {
    background-color: #333;
    height: 60px;
    border-bottom: 5px solid #ff6336;
    color: #FFF;
}

body>div.nettime>div.header>div.menu>ul {
    margin: 0px;
    padding: 0px;
    height: 100%;
    list-style: none;
}

body>div.nettime>div.header>div.menu>ul>li {
    display: inline-block;
    font-size: 18px;
    height: 100%;
}

body>div.nettime>div.footer {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: #333;
    padding: 8px;
    font-size: 11px;
    color: #DDD;
}

body>div.nettime>div.footer a {
    color: #DDD;
}

body>div#loading-status {
    position: fixed;
    bottom: 35px;
    right: 15px;
    background-color: #FFF;
    border: 1px solid #333;
    border-radius: 6px;
}

body>div#loading-status>ul {
    list-style: none;
    padding: 5px 10px;
    margin: 0px;
}

.button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 4px 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.button1 {
    background-color: white;
    color: black;
    border: 2px solid #4CAF50;
    border-radius: 8px;
}

.errorDialog {
    z-index: 1;
}

.k-grid td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

div.template-cell,
#cell {
    background-color: white;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
}

div.template-cell:hover,
#cell:hover {
    box-shadow: 0 2px 10px rgba(255, 117, 26, 1);
}

div.template-cell:hover,
#cell_black:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 1);
}

.parentGrid {
    display: grid;
    height: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: 100px 1fr 50px;
    grid-template-areas:
        'header'
        'main'
        'footer';
}

.k-panelbar>.k-item>.k-link {
    background-color: white !important;
    color: black !important;
}

.k-panelbar>.k-item.k-state-active>.k-link,
.k-panelbar>.k-item.k-state-expanded>.k-link {
    background-color: #f46a1f !important;

    color: white !important;
}