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: 28px;
    height: 24px;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}

.ixis-busy-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ixis-busy-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 18px 20px;
    min-width: 340px;
    max-width: 520px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 14px;
    align-items: center;
}

.ixis-busy-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(0, 0, 0, 0.12);
    border-top-color: rgba(0, 0, 0, 0.55);
    border-radius: 50%;
    animation: ixis-spin 0.9s linear infinite;
}

.ixis-busy-text {
    display: flex;
    flex-direction: column;
}

.ixis-busy-caption {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
}

.ixis-busy-message {
    font-size: 0.95rem;
    opacity: 0.85;
}

@keyframes ixis-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}