/* A kitchen display is a fixed-purpose screen, not a document: it should never rubber-band, never
   offer text selection to a wet glove, and never show a scrollbar it did not ask for. */
html, body {
    margin: 0;
    background: #0e1416;
    overscroll-behavior: none;
    -webkit-tap-highlight-color: transparent;
}

body { user-select: none; }

#blazor-error-ui {
    color-scheme: dark;
    background: #2e1b18;
    border-top: 2px solid #e06b5c;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.6);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1100;
    color: #ffb3a7;
}

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