html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

/* Kill the default XAF logo and show text instead */
.header-logo {
    flex-shrink: 0;
    /* remove any image/mask coming from DevExpress */
    background-image: none !important;
    -webkit-mask: none !important;
    mask: none !important;
    width: auto !important;
    height: auto !important;
    /* hide the original "XAF" text inside the span */
    font-size: 0;
}

    /* Our replacement text */
    .header-logo::after {
        content: "Scudio CRM";
        font-size: 20px;
        font-weight: 600;
        color: inherit; /* or set a color explicitly */
    }

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}
