html,
body {
    height: 100%;
}

/* Boot screen shown before the WASM runtime finishes loading */
.boot-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boot-mark {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    opacity: 0.6;
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.85;
    }
}

@media (prefers-reduced-motion: reduce) {
    .boot-mark {
        animation: none;
    }
}

#blazor-error-ui {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    background: var(--bs-danger);
    color: #fff;
    z-index: 1050;
}

#blazor-error-ui .reload {
    color: #fff;
    text-decoration: underline;
    margin-left: 0.5rem;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    float: right;
}
