/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

html,
body {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    background-color: #F8FAFC;
}

/* 
    Admin is now using MudBlazor Theming defined in MainLayout.razor.
    Conflicting generic styles have been removed.
*/

/* Helper Classes */
.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

/* Blazor Error UI */
.blazor-error-boundary {
    background: #FEF2F2;
    color: #991B1B;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}