.layout-shell {
    min-height: 100vh;
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: radial-gradient(circle at 10% 20%, rgba(144, 223, 200, 0.22), transparent 25%), radial-gradient(circle at 80% 0%, rgba(82, 169, 215, 0.18), transparent 32%), #f3f7f4;
    color: #0f172a;
    display: flex;
    flex-direction: column;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(243, 247, 244, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 60;
}

.loading-overlay.is-initial {
    background: #f3f7f4;
}

.loading-brand {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
    text-align: center;
}

.loading-emoji {
    font-size: 2rem;
    animation: robot-walk 1.4s ease-in-out infinite;
}

.loading-title {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.dubheader {
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.65);
}

@keyframes robot-walk {
    0% {
        transform: translateX(-20px);
    }
    50% {
        transform: translateX(20px);
    }
    100% {
        transform: translateX(-20px);
    }
}

.page-content {
    /*max-width: 1200px;*/
    padding-top: calc(var(--header-height) + 0px) !important;
    /*margin: 0 auto;*/
    /*padding: 1.5rem 1.5rem 4rem;*/
}

.content {
    padding-top:15px !important;
    padding: 0;
}

#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    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;
    }

@media (max-width: 768px) {
    .page-content {
        /*padding: 8rem 1rem 3rem;*/
    }
}
