﻿html, body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--palette-background);
    color: var(--palette-background-contrast);
    min-height: 100vh;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

#blazor-error-ui {
    color-scheme: light only;
    background: #fff4d6;
    color: #1a1a1a;
    bottom: 0;
    box-shadow: 0 -1px 12px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.85rem 1.25rem 0.95rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 10000;
    font-family: 'Inter', sans-serif;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.6rem;
}

.blazor-error-boundary {
    background: #c41236;
    padding: 1rem 1.25rem;
    color: white;
    border-radius: 8px;
}

.blazor-error-boundary::after {
    content: "An error has occurred.";
}