html, body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 隐藏 Blazor 默认错误条样式（如未单独定义）。 */
#blazor-error-ui {
    background: #fef0c7;
    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;
}

/* EmptyLayout 居中（Login 页用）。 */
.empty-layout-root {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(47, 111, 237, 0.12), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(16, 163, 127, 0.11), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, #f2f6fb 100%);
}

.empty-layout-content {
    width: 100%;
}
