html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: url('../images/Logo.svg');
    mask: url('../images/Logo.svg');
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 70px;
    height: 24px;
    border: 1px solid revert;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}

/* custom busy indicator */
.xaf-busy-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.xaf-spinner {
    text-align: center;
}

/* Progress Indicator */
/* Progress overlay for XAF Blazor */

.xaf-progress-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.xaf-progress-box {
    background: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    min-width: 300px;
    text-align: center;
}

.xaf-progress-box .progress {
        height: 25px;
}

.xaf-progress-box .progress-bar {
        font-weight: bold;
}

.excel-preview-grid {
    max-height: 600px;
    overflow: auto;
}

.excel-preview-grid .dxbl-grid-table {
    font-size: 13px;
}

.dxbl-grid {
    overflow-x: auto;
}

.dxbl-grid table {
     min-width: max-content;
}