/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Full bleed along the bottom, above the sticky footer. Styled like the toast — a tinted panel with
   a coloured edge rather than the framework's lightyellow — so a customer who has seen one error
   surface recognises the other. Not the toast's position though: a dead circuit is not a passing
   message and must not be somewhere a glance can miss.

   NOT flex, deliberately. Blazor shows this bar by setting `display: block` inline, and an inline
   style beats any rule here — a flex container would silently become a block one and the gap would
   vanish. Normal inline flow with a margin does the same job and cannot be overridden out. */
#blazor-error-ui[b-tdqk8nv2a6] {
    color-scheme: light only;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    padding: 12px 20px;
    background: #fdf3f2;
    border-top: 3px solid #c4453e;
    font-size: 13.5px;
    line-height: 1.5;
    color: #0f172a;
}

    #blazor-error-ui .reload[b-tdqk8nv2a6] {
        display: inline-block;
        margin-left: 14px;
        padding: 5px 14px;
        border: 1px solid #c4453e;
        border-radius: 6px;
        background: #ffffff;
        font-size: 13px;
        font-weight: 500;
        color: #c4453e;
        text-decoration: none;
    }

    #blazor-error-ui .reload:hover[b-tdqk8nv2a6] {
        background: #c4453e;
        color: #ffffff;
    }
