﻿html {
    height: 100%;
}

body {
    height: 100%;
}

.mainapp{
    height:100%;
}

.loading-container {
    text-align: center;
    position: absolute;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    color: white;
    background: #000000d6;
    width: 100vw;
    z-index: 999;
    overflow: hidden;
}

.loader-with-image {
    position: relative;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 5px;
    border-radius: 195px;
    animation: circularwave 1s infinite;
}
@keyframes circularwave{
    0% {
        width: 0px;
        height: 0px;
        border-width: 0px;
        opacity: 1;
    }

    100% {
        width: 100px;
        height: 100px;
        border-width: 5px;
        opacity: 0;
    }
}
.loader-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
}

.not-authorized-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    min-height: 200px;
}

.not-authorized-content {
    text-align: center;
    max-width: 400px;
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--kendo-color-app-surface);
    border: 1px solid var(--kendo-color-border);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.not-authorized-icon {
    margin-bottom: 1rem;
}

    .not-authorized-icon i {
        font-size: 3rem;
        color: var(--kendo-color-warning);
    }

.not-authorized-message h5 {
    margin-bottom: 0.5rem;
    color: var(--kendo-color-primary);
    font-weight: 600;
}

.not-authorized-message p {
    margin-bottom: 0.5rem;
    color: var(--kendo-color-text);
}

.custom-message {
    font-style: italic;
    color: var(--kendo-color-text-secondary);
    font-size: 0.9rem;
}

