html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}
dx-license {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

.header-logo {
    flex-shrink: 0;
    background-color: #0B2A4A; /* visible logo color */

    -webkit-mask: url('../images/FlexaLogo.svg');
    mask: url('../images/FlexaLogo.svg');
   
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 180px;
    height: 24px;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}


.hide-toolbar .nested-toolbar {
    display: none !important;
}
/*.dxbl-grid-header-row {
    display: none !important;
}*/

/* ===== FLEXA SPLASH (IMAGE + LOADING BAR) ===== */

.flexa-splash {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff; /* light, clean */
} 

    /* Logo */

.flexa-splash img {
        width: 320px; /* increase width */
        max-width: 100%; /* responsive, will shrink on small screens */
        height: auto; /* maintain aspect ratio */
        margin-bottom: 28px; /* spacing from loading bar */
    }


/* Loading bar container */
.flexa-loading {
    width: 320px;
    height: 22px; /* thicker bar */
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

    /* Animated bar */
    .flexa-loading span {
        display: block;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, #2563eb, #38bdf8);
        transform: scaleX(0);
        transform-origin: left;
        animation: flexa-bar 1.6s linear infinite;
    }

/* Animation */
@keyframes flexa-bar {
    0% {
        transform: scaleX(0);
    }

    90% {
        transform: scaleX(1);
    }

    99.9% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0); /* instant jump */
    }


 
}
   .flexa-loading-text {
        margin-top: 10px; /* space above the text */
        padding-top: 8px; /* inner spacing from top */
        font-size: 18px; /* bigger text */
        font-weight: 500; /* slightly bolder (optional) */
     
    }

