html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

/* Light theme colors (default) */
.header-logo .logo-text {
    fill: #333333;
    transition: fill 0.3s ease;
}

.header-logo .logo-accent {
    fill: #FF6B35;
    transition: fill 0.3s ease;
}

/* Dark theme colors */
[data-bs-theme="dark"] .header-logo .logo-text {
    fill: #ffffff;
}

[data-bs-theme="dark"] .header-logo .logo-accent {
    fill: #FF8C42;
}

.header-logo {
    /*background-image: url('../images/logo.svg');*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 140px;
    height: 50px;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}