/* Imports the Finnwood design system, then a few framework-required helpers. */
@import url("css/finnwood.css");

h1:focus { outline: none; }

/* Blazor static-SSR form validation states */
.valid.modified:not([type=checkbox]) { outline: 1px solid var(--green-500); }
.invalid { outline: 1px solid #c0432b; }
.validation-message { color: #c0432b; font-size: .85rem; }

.blazor-error-boundary {
    background: #7a1f1f; padding: 1rem 1.25rem; color: #fff; border-radius: 12px;
}
.blazor-error-boundary::after { content: "An error has occurred."; }
