/* /Components/Layout/LanguageSwitcher.razor.rz.scp.css */
/* This lives here rather than in MainLayout.razor.css: MainLayout's own markup is 100% MudBlazor component
   tags (MudAppBar, MudStack, ...) with no plain HTML element of its own to carry the CSS-isolation scope
   attribute, so a "::deep" rule placed there can never match anything - the form/button elements below are
   the ones actually written in *this* component's markup, so a direct (non-::deep) rule scopes correctly. */
.ms-lang-btn[b-mp0fknz58j] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.15rem 0.4rem;
}

.ms-lang-btn:first-child[b-mp0fknz58j] {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.ms-lang-btn:last-child[b-mp0fknz58j] {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.ms-lang-btn-active[b-mp0fknz58j] {
    background: var(--mud-palette-primary);
    border-color: var(--mud-palette-primary);
    color: var(--mud-palette-primary-text);
    cursor: default;
    font-weight: 700;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.ms-brand-link[b-ycie9exn8k] {
    color: inherit;
    text-decoration: none;
}

    .ms-brand-link:hover[b-ycie9exn8k] {
        opacity: 0.85;
    }

.ms-header-app-icon[b-ycie9exn8k] {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
}

#blazor-error-ui[b-ycie9exn8k] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-ycie9exn8k] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
