/* /Components/Layout/MainLayout.razor.rz.scp.css */
.admin-layout[b-kc7pcv6ppu] {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.admin-sidebar[b-kc7pcv6ppu] {
    width: 280px;
    background-color: white;
    border-right: 1px solid var(--color-border);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

/* Brand */
.sidebar-brand[b-kc7pcv6ppu] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1.25rem;
}

.brand-logo[b-kc7pcv6ppu] {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background-color: var(--color-elephant-600);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-text-block[b-kc7pcv6ppu] {
    display: flex;
    flex-direction: column;
}

.brand-name[b-kc7pcv6ppu] {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-prussian-blue);
    line-height: 1.25;
}

.brand-badge[b-kc7pcv6ppu] {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.25;
}

/* User section at bottom of sidebar */
.sidebar-user[b-kc7pcv6ppu] {
    margin-top: auto;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.sidebar-user .user-info[b-kc7pcv6ppu] {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sidebar-user .user-name[b-kc7pcv6ppu] {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-prussian-blue);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-user .user-name:hover[b-kc7pcv6ppu] {
    text-decoration: underline;
}

.sidebar-user .user-email[b-kc7pcv6ppu] {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-sign-out[b-kc7pcv6ppu] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    background-color: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.15s ease;
}

.btn-sign-out:hover[b-kc7pcv6ppu] {
    color: var(--color-prussian-blue);
    border-color: var(--color-elephant-200);
    background-color: var(--color-elephant-50);
    text-decoration: none;
}

/* Main content */
.admin-main[b-kc7pcv6ppu] {
    flex: 1;
    overflow-y: auto;
    background-color: var(--color-background);
}

.admin-content[b-kc7pcv6ppu] {
    padding: 2rem 2.5rem;
    max-width: 1400px;
}

/* Error UI */
#blazor-error-ui[b-kc7pcv6ppu] {
    background: var(--color-danger);
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 0.75rem 1.5rem;
    display: none;
    z-index: 1000;
}

#blazor-error-ui .reload[b-kc7pcv6ppu] {
    color: white;
    text-decoration: underline;
    margin-left: 0.5rem;
}

#blazor-error-ui .dismiss[b-kc7pcv6ppu] {
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Error container */
.error-container[b-kc7pcv6ppu] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    min-height: 300px;
}

.error-container h2[b-kc7pcv6ppu] {
    color: var(--color-danger);
    margin-bottom: 1rem;
}

.error-container p[b-kc7pcv6ppu] {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    max-width: 400px;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-sidebar[b-kc7pcv6ppu] {
        width: 220px;
    }

    .admin-content[b-kc7pcv6ppu] {
        padding: 1rem;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.nav-menu[b-nvrrvnxxlf] {
    padding: 1.25rem 1rem;
}

.nav-header[b-nvrrvnxxlf] {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    padding: 0 0.75rem;
    margin-bottom: 0.75rem;
}

.nav-list[b-nvrrvnxxlf] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

[b-nvrrvnxxlf] .nav-link {
    display: flex;
    align-items: center;
    gap: 0.6875rem;
    padding: 0.5625rem 0.75rem;
    color: #475569;
    text-decoration: none;
    border-radius: 0.5625rem;
    border: none;
    transition: all 0.15s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

[b-nvrrvnxxlf] .nav-link:hover {
    background-color: var(--color-elephant-50);
    color: var(--color-elephant-700);
    text-decoration: none;
}

[b-nvrrvnxxlf] .nav-link.active {
    background-color: #e9f7fd;
    color: #06628c;
    font-weight: 700;
}

.nav-icon[b-nvrrvnxxlf] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1rem;
    flex-shrink: 0;
}

.nav-icon svg[b-nvrrvnxxlf] {
    width: 16px;
    height: 16px;
}

.nav-text[b-nvrrvnxxlf] {
    flex: 1;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-0oljytvrqt],
.components-reconnect-repeated-attempt-visible[b-0oljytvrqt],
.components-reconnect-failed-visible[b-0oljytvrqt],
.components-pause-visible[b-0oljytvrqt],
.components-resume-failed-visible[b-0oljytvrqt],
.components-rejoining-animation[b-0oljytvrqt] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-0oljytvrqt],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-0oljytvrqt],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-0oljytvrqt],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-0oljytvrqt],
#components-reconnect-modal.components-reconnect-retrying[b-0oljytvrqt],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-0oljytvrqt],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-0oljytvrqt],
#components-reconnect-modal.components-reconnect-failed[b-0oljytvrqt],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-0oljytvrqt] {
    display: block;
}


#components-reconnect-modal[b-0oljytvrqt] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-0oljytvrqt 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-0oljytvrqt 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-0oljytvrqt 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-0oljytvrqt]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-0oljytvrqt 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-0oljytvrqt {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-0oljytvrqt {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-0oljytvrqt {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-0oljytvrqt] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-0oljytvrqt] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-0oljytvrqt] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-0oljytvrqt] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-0oljytvrqt] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-0oljytvrqt] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-0oljytvrqt] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-0oljytvrqt 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-0oljytvrqt] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-0oljytvrqt {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/AccessDenied.razor.rz.scp.css */
.access-denied-container[b-kkoz80bay2] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    text-align: center;
}

.access-denied-content[b-kkoz80bay2] {
    max-width: 500px;
    padding: 2rem;
}

.access-denied-content h1[b-kkoz80bay2] {
    color: var(--color-prussian-blue);
    margin-bottom: 1rem;
}

.access-denied-content p[b-kkoz80bay2] {
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.access-denied-actions[b-kkoz80bay2] {
    margin-top: 2rem;
}

.access-denied-actions .btn[b-kkoz80bay2] {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to bottom right, var(--color-elephant-600), var(--color-elephant-800));
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.access-denied-actions .btn:hover[b-kkoz80bay2] {
    background: linear-gradient(to bottom right, var(--color-elephant-700), var(--color-elephant-900));
    text-decoration: none;
    color: white;
}
/* /Components/Pages/Assessments.razor.rz.scp.css */
.page-description[b-49pahjp4ib] {
    color: var(--color-text-muted);
    margin-top: -0.5rem;
}

.loading-container[b-49pahjp4ib] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 1rem;
}

.loading-text[b-49pahjp4ib] {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.error-container[b-49pahjp4ib] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    gap: 0.5rem;
}

.error-icon[b-49pahjp4ib] {
    color: var(--color-danger);
    margin-bottom: 0.5rem;
}

.error-container h3[b-49pahjp4ib] {
    margin-bottom: 0.25rem;
}

.error-container p[b-49pahjp4ib] {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.toolbar[b-49pahjp4ib] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.search-box[b-49pahjp4ib] {
    position: relative;
    flex: 1;
    max-width: 20rem;
}

.search-icon[b-49pahjp4ib] {
    position: absolute;
    left: 0.625rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    pointer-events: none;
}

.search-input[b-49pahjp4ib] {
    padding-left: 2rem !important;
}

.result-count[b-49pahjp4ib] {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.table-container[b-49pahjp4ib] {
    overflow-x: auto;
}

.card-header[b-49pahjp4ib] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sortable-header[b-49pahjp4ib] {
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

.sortable-header:hover[b-49pahjp4ib] {
    color: var(--color-elephant-700);
}

.sort-indicator[b-49pahjp4ib] {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.375rem;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.sort-asc .sort-indicator[b-49pahjp4ib] {
    border-bottom: 5px solid currentColor;
    border-top: none;
    opacity: 1;
}

.sort-desc .sort-indicator[b-49pahjp4ib] {
    border-top: 5px solid currentColor;
    border-bottom: none;
    opacity: 1;
}

.pagination[b-49pahjp4ib] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--color-border);
}

.pagination-info[b-49pahjp4ib] {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.user-info[b-49pahjp4ib] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.user-name[b-49pahjp4ib] {
    font-weight: 500;
}

.user-email[b-49pahjp4ib] {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.row-actions[b-49pahjp4ib] {
    display: flex;
    gap: 0.5rem;
}

.btn-sm[b-49pahjp4ib] {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    gap: 0.375rem;
}

.loading-spinner-sm[b-49pahjp4ib] {
    width: 0.875rem;
    height: 0.875rem;
    border-width: 2px;
}

.row-error[b-49pahjp4ib] {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    color: var(--color-danger);
}
/* /Components/Pages/Home.razor.rz.scp.css */
.page-description[b-oekilrwz1s] {
    color: var(--color-text-muted);
    margin-top: -0.5rem;
}

.dashboard-grid[b-oekilrwz1s] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.dashboard-card[b-oekilrwz1s] {
    transition: box-shadow 0.15s ease;
}

.dashboard-card:hover[b-oekilrwz1s] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dashboard-card h3[b-oekilrwz1s] {
    margin-bottom: 0.5rem;
}

.card-description[b-oekilrwz1s] {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
/* /Components/Pages/Login.razor.rz.scp.css */
.login-container[b-a6ue7lyd8b] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    text-align: center;
}

.login-content[b-a6ue7lyd8b] {
    max-width: 400px;
    padding: 3rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.login-header[b-a6ue7lyd8b] {
    margin-bottom: 1.5rem;
}

.login-header h1[b-a6ue7lyd8b] {
    color: var(--color-prussian-blue);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.login-badge[b-a6ue7lyd8b] {
    display: inline-block;
    background-color: var(--color-selective-yellow);
    color: var(--color-prussian-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.login-content p[b-a6ue7lyd8b] {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.login-actions .btn[b-a6ue7lyd8b] {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(to bottom right, var(--color-elephant-600), var(--color-elephant-800));
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.2s;
}

.login-actions .btn:hover[b-a6ue7lyd8b] {
    background: linear-gradient(to bottom right, var(--color-elephant-700), var(--color-elephant-900));
    text-decoration: none;
    color: white;
}
/* /Components/Pages/Users.razor.rz.scp.css */
.page-description[b-92tgyoxfgi] {
    color: var(--color-text-muted);
    margin-top: -0.5rem;
}

.loading-container[b-92tgyoxfgi] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 1rem;
}

.loading-text[b-92tgyoxfgi] {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.error-container[b-92tgyoxfgi] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    gap: 0.5rem;
}

.error-icon[b-92tgyoxfgi] {
    color: var(--color-danger);
    margin-bottom: 0.5rem;
}

.error-container h3[b-92tgyoxfgi] {
    margin-bottom: 0.25rem;
}

.error-container p[b-92tgyoxfgi] {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

/* Toolbar */
.toolbar[b-92tgyoxfgi] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.search-box[b-92tgyoxfgi] {
    position: relative;
    flex: 1;
    max-width: 20rem;
}

.search-icon[b-92tgyoxfgi] {
    position: absolute;
    left: 0.625rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    pointer-events: none;
}

.search-input[b-92tgyoxfgi] {
    padding-left: 2rem !important;
}

.role-filter[b-92tgyoxfgi] {
    width: auto;
    min-width: 8rem;
}

.result-count[b-92tgyoxfgi] {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.card-header[b-92tgyoxfgi] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-container[b-92tgyoxfgi] {
    overflow-x: auto;
}

/* Sortable column headers */
.sortable-header[b-92tgyoxfgi] {
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

.sortable-header:hover[b-92tgyoxfgi] {
    color: var(--color-elephant-700);
}

.sort-indicator[b-92tgyoxfgi] {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.375rem;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.sort-asc .sort-indicator[b-92tgyoxfgi] {
    border-bottom: 5px solid currentColor;
    border-top: none;
    opacity: 1;
}

.sort-desc .sort-indicator[b-92tgyoxfgi] {
    border-top: 5px solid currentColor;
    border-bottom: none;
    opacity: 1;
}

/* Pagination */
.pagination[b-92tgyoxfgi] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--color-border);
}

.pagination-info[b-92tgyoxfgi] {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.btn-sm[b-92tgyoxfgi] {
    padding: 0.25rem 0.625rem;
    font-size: 0.8125rem;
}

/* Role select */
.role-select[b-92tgyoxfgi] {
    max-width: 8rem;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
}

/* Status banners */
.status-banner[b-92tgyoxfgi] {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.status-success[b-92tgyoxfgi] {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.status-error[b-92tgyoxfgi] {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Confirmation modal */
.modal-overlay[b-92tgyoxfgi] {
    position: fixed;
    inset: 0;
    background-color: rgba(2, 47, 70, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.confirm-dialog[b-92tgyoxfgi] {
    background-color: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    max-width: 28rem;
    width: calc(100% - 2rem);
    box-shadow: 0 10px 30px rgba(2, 47, 70, 0.25);
    pointer-events: auto;
}

.confirm-dialog h3[b-92tgyoxfgi] {
    margin-bottom: 0.75rem;
}

.modal-note[b-92tgyoxfgi] {
    color: var(--color-text-muted);
    font-size: 0.8125rem;
}

.modal-actions[b-92tgyoxfgi] {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1.25rem;
}
/* /Components/Pages/WhoAmI.razor.rz.scp.css */
.page-description[b-v1msvqimhs] {
    color: var(--color-text-muted);
    margin-top: -0.5rem;
}

.card + .card[b-v1msvqimhs] {
    margin-top: 1.5rem;
}

.table-container[b-v1msvqimhs] {
    overflow-x: auto;
}

.card-header[b-v1msvqimhs] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

code[b-v1msvqimhs] {
    font-size: 0.8125rem;
    background-color: var(--color-elephant-50);
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
}

.badge-admin[b-v1msvqimhs] {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(to bottom right, var(--color-elephant-600), var(--color-elephant-800));
}

.role-note[b-v1msvqimhs] {
    font-size: 0.875rem;
    margin-left: 0.25rem;
}

.role-note-ok[b-v1msvqimhs] {
    color: var(--color-success);
}

.role-note-bad[b-v1msvqimhs] {
    color: var(--color-danger);
}
/* /Components/RedirectToLogin.razor.rz.scp.css */
.login-container[b-x4zuuvqn9x] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    text-align: center;
    background: linear-gradient(135deg, var(--color-elephant-50) 0%, var(--color-elephant-100) 100%);
}

.login-content[b-x4zuuvqn9x] {
    max-width: 400px;
    padding: 3rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.login-header[b-x4zuuvqn9x] {
    margin-bottom: 1.5rem;
}

.login-header h1[b-x4zuuvqn9x] {
    color: var(--color-prussian-blue);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.login-badge[b-x4zuuvqn9x] {
    display: inline-block;
    background-color: var(--color-selective-yellow);
    color: var(--color-prussian-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.login-content p[b-x4zuuvqn9x] {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.login-actions .btn[b-x4zuuvqn9x] {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(to bottom right, var(--color-elephant-600), var(--color-elephant-800));
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.2s;
}

.login-actions .btn:hover[b-x4zuuvqn9x] {
    background: linear-gradient(to bottom right, var(--color-elephant-700), var(--color-elephant-900));
    text-decoration: none;
    color: white;
}
