html, body, #app {
    min-height: 100%;
}

html, body {
    margin: 0;
    font-family: 'Rubik', sans-serif;
}

h1:focus {
    outline: none;
}

#blazor-error-ui {
    background: #fff6cc;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.app-shell {
    min-height: 100vh;
}

.boot-screen {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1rem;
    background:
        radial-gradient(circle at 20% 15%, rgba(0, 63, 132, 0.14), transparent 30%),
        radial-gradient(circle at 80% 85%, rgba(65, 140, 230, 0.12), transparent 32%),
        linear-gradient(180deg, #f6f9fd 0%, #eef4fb 100%);
}

.boot-card {
    width: min(340px, 100%);
    padding: 1.5rem 1.25rem;
    border-radius: 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 63, 132, 0.15);
    box-shadow: 0 10px 28px rgba(0, 40, 84, 0.12);
}

.boot-spinner {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.9rem;
    border-radius: 50%;
    border: 4px solid rgba(0, 63, 132, 0.18);
    border-top-color: #003f84;
    animation: boot-spin 0.9s linear infinite;
}

.boot-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d2b52;
}

.boot-subtitle {
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: #5f738c;
}

@keyframes boot-spin {
    to {
        transform: rotate(360deg);
    }
}
