﻿:root {
    --ink: #1c2430;
    --graphite: #5b6472;
    --hairline: #e3e7ed;
    --surface: #ffffff;
    --surface-muted: #f7f8fa;
    --accent: #c9812c;
    --accent-soft: #fbeee0;
    --danger: #c0392b;
    --success: #1f8a5c;
    --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    --shadow-sm: 0 1px 2px rgba(20, 24, 32, 0.04);
    --shadow-md: 0 4px 16px rgba(20, 24, 32, 0.06);
    --radius: 12px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--ink);
    background: var(--surface-muted);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#blazor-error-ui {
    display: none;
    background: #ffffcc;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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;
    }
