/* Framework-owned hooks (validation classes, error UI). Themed to match the
   Keynex tokens — everything else lives in Styles/app.css. */

.validation-message {
    color: #FF6868;
    font-size: 13px;
    line-height: 1.5;
}

.blazor-error-boundary {
    background: #FF6868;
    padding: 16px 20px;
    color: #0C1521;
    border-radius: 10px;
}

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

#blazor-error-ui {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1000;
    display: none;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: #1B304B;
    border-top: 1px solid #FF6868;
    color: #FFFFFF;
    font-size: 13px;
    line-height: 1.5;
}

#blazor-error-ui .reload {
    color: #4F94EE;
    text-decoration: underline;
    text-underline-offset: 3px;
}

#blazor-error-ui .dismiss {
    margin-left: auto;
    cursor: pointer;
    color: #A5B1B8;
}
