/* /Components/LearningProgressIndicator.razor.rz.scp.css */
/*
 * LearningProgressIndicator - Zentrale Styles für Fortschrittsanzeigen
 * 
 * Farben und Abstände folgen dem MudBlazor-Design-System.
 * Animation ist dezent und professionell gehalten.
 */

/* Container */
.learning-progress-indicator[b-5mydqmhrqd] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 120px;
    padding: 8px 0;
}

.learning-progress-indicator.compact[b-5mydqmhrqd] {
    min-width: 80px;
    gap: 2px;
    padding: 4px 0;
}

/* Label - kleine Beschriftung oben */
.progress-label[b-5mydqmhrqd] {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--mud-palette-text-secondary, #666);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.compact .progress-label[b-5mydqmhrqd] {
    font-size: 0.65rem;
    margin-bottom: 0;
}

/* Prozentzahl - groß und prominent */
.progress-percentage[b-5mydqmhrqd] {
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.progress-percentage .percent-value[b-5mydqmhrqd] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--mud-palette-text-primary, #1a1a1a);
    letter-spacing: -1px;
}

.progress-percentage .percent-sign[b-5mydqmhrqd] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--mud-palette-text-primary, #1a1a1a);
    margin-left: 2px;
}

.progress-percentage.compact .percent-value[b-5mydqmhrqd] {
    font-size: 1.5rem;
}

.progress-percentage.compact .percent-sign[b-5mydqmhrqd] {
    font-size: 1rem;
}

/* Progress Bar Container */
.progress-bar-container[b-5mydqmhrqd] {
    margin: 8px 0 6px 0;
}

.compact .progress-bar-container[b-5mydqmhrqd] {
    margin: 4px 0;
}

/* Progress Bar Track - Hintergrund */
.progress-bar-track[b-5mydqmhrqd] {
    height: 8px;
    background-color: var(--mud-palette-background-grey, #e0e0e0);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.compact .progress-bar-track[b-5mydqmhrqd] {
    height: 6px;
    border-radius: 3px;
}

/* Progress Bar Fill - Fortschritt */
.progress-bar-fill[b-5mydqmhrqd] {
    height: 100%;
    border-radius: 4px;
    transition: width 0.4s ease-out;
    position: relative;
}

.compact .progress-bar-fill[b-5mydqmhrqd] {
    border-radius: 3px;
}

/* Farben für verschiedene Fortschrittsstufen */
.progress-bar-fill.bar-default[b-5mydqmhrqd] {
    background-color: var(--mud-palette-grey-default, #9e9e9e);
}

.progress-bar-fill.bar-info[b-5mydqmhrqd] {
    background-color: var(--mud-palette-info, #2196f3);
}

.progress-bar-fill.bar-primary[b-5mydqmhrqd] {
    background-color: var(--mud-palette-primary, #594ae2);
}

.progress-bar-fill.bar-success[b-5mydqmhrqd] {
    background-color: var(--mud-palette-success, #00c853);
}

/* Dezente Shimmer-Animation bei 100% */
.progress-bar-fill.animate-complete[b-5mydqmhrqd] {
    background: linear-gradient(
        90deg,
        var(--mud-palette-success, #00c853) 0%,
        var(--mud-palette-success, #00c853) 40%,
        #69f0ae 50%,
        var(--mud-palette-success, #00c853) 60%,
        var(--mud-palette-success, #00c853) 100%
    );
    background-size: 200% 100%;
    animation: shimmer-b-5mydqmhrqd 3s ease-in-out infinite;
}

@keyframes shimmer-b-5mydqmhrqd {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

/* Detailtext - klein unter dem Balken */
.progress-detail[b-5mydqmhrqd] {
    font-size: 0.8rem;
    color: var(--mud-palette-text-secondary, #666);
    line-height: 1.3;
}

.compact .progress-detail[b-5mydqmhrqd] {
    font-size: 0.7rem;
}

/* Completed State - optionale zusätzliche Styles */
.learning-progress-indicator.completed .progress-percentage .percent-value[b-5mydqmhrqd],
.learning-progress-indicator.completed .progress-percentage .percent-sign[b-5mydqmhrqd] {
    color: var(--mud-palette-success, #00c853);
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
    .learning-progress-indicator[b-5mydqmhrqd] {
        min-width: 100px;
    }

    .progress-percentage .percent-value[b-5mydqmhrqd] {
        font-size: 1.75rem;
    }

    .progress-percentage .percent-sign[b-5mydqmhrqd] {
        font-size: 1.1rem;
    }

    .progress-bar-track[b-5mydqmhrqd] {
        height: 6px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-702zlbwb35] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-702zlbwb35] {
    flex: 1;
}

[b-702zlbwb35] .mud-main-content {
    background-color: #FAFAFA;
    min-height: calc(100vh - 64px);
}

[b-702zlbwb35] body:has(.station-player-mode) .mud-main-content {
    min-height: 100vh;
}

[b-702zlbwb35] .mud-paper {
    border-color: #E0E0E0;
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-brand[b-xzuoynmb46] {
    font-size: 1.1rem;
    color: #ecfdf5;
}

/* Icons */
.bi[b-xzuoynmb46] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

/* SVG-Icons bleiben weiß → guter Kontrast auf Grün */
.bi-house-door-fill-nav-menu[b-xzuoynmb46] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-xzuoynmb46] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-xzuoynmb46] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

/* Navigation Items */
.nav-item[b-xzuoynmb46] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-xzuoynmb46] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-xzuoynmb46] {
        padding-bottom: 1rem;
    }

    .nav-item[b-xzuoynmb46]  a {
        color: #d1fae5; /* helles Grün */
        border-radius: 6px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

        /* Active */
        .nav-item[b-xzuoynmb46]  a.active {
            background-color: rgba(34, 197, 94, 0.35); /* kräftiges Grün */
            color: #ffffff;
        }

        /* Hover */
        .nav-item[b-xzuoynmb46]  a:hover {
            background-color: rgba(34, 197, 94, 0.18);
            color: #ffffff;
        }

/* Desktop */
@media (min-width: 641px) {
    .collapse[b-xzuoynmb46] {
        display: block;
    }

    .nav-scrollable[b-xzuoynmb46] {
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Layout/Shell/AppShellFrame.razor.rz.scp.css */
.app-shell-root[b-jqr4f7aetl] {
    min-height: 100dvh;
}

[b-jqr4f7aetl] .app-shell-header {
    height: var(--shell-header-height);
    z-index: var(--shell-z-header) !important;
    background: var(--app-shell-header-gradient) !important;
    color: var(--app-shell-header-foreground) !important;
}

[b-jqr4f7aetl] .app-shell-header .mud-icon-root,
[b-jqr4f7aetl] .app-shell-header .mud-typography,
[b-jqr4f7aetl] .app-shell-header .mud-button-label,
[b-jqr4f7aetl] .app-shell-header .mud-icon-button-label,
[b-jqr4f7aetl] .app-shell-header .mud-chip,
[b-jqr4f7aetl] .app-shell-header .mud-chip-content {
    color: var(--app-shell-header-foreground) !important;
}

.app-shell-header-row[b-jqr4f7aetl] {
    min-height: var(--shell-header-height);
}

.app-shell-zone-a[b-jqr4f7aetl],
.app-shell-zone-c[b-jqr4f7aetl] {
    flex-shrink: 0;
}

.app-shell-zone-b[b-jqr4f7aetl] {
    min-width: 0;
    flex: 1;
}

[b-jqr4f7aetl] .app-shell-burger-menu .mud-button-root {
    color: var(--app-shell-header-foreground) !important;
}

[b-jqr4f7aetl] .app-shell-menu-section {
    color: var(--app-shell-drawer-accent) !important;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
}

.app-shell-brand[b-jqr4f7aetl] {
    color: var(--app-shell-header-foreground) !important;
    text-transform: none;
    letter-spacing: 0.02em;
}

.app-shell-brand-logo[b-jqr4f7aetl] {
    height: 30px;
    width: auto;
    object-fit: contain;
    margin-right: 8px;
}

[b-jqr4f7aetl] .app-shell-zone-b .mud-typography {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-shell-main-content[b-jqr4f7aetl] {
    padding-top: calc(var(--shell-header-height) + 10px);
}

.app-shell-breadcrumbs[b-jqr4f7aetl] {
    margin-bottom: 8px;
}

/* /Layout/TeacherLayout.razor.rz.scp.css */
.teacher-shell-header-row[b-qb66nnsux4] {
    min-width: 0;
}

[b-qb66nnsux4] .teacher-shell-appbar {
    border: 1px solid #E3D9D5;
    border-radius: 14px;
    background: linear-gradient(130deg, #95BDEE 0%, #6C9FDF 60%, #4D86D2 115%) !important;
    background-color: transparent !important;
    color: #FFFFFF;
}

[b-qb66nnsux4] .teacher-shell-appbar::before {
    display: none !important;
}

[b-qb66nnsux4] .teacher-shell-appbar .mud-icon-root,
[b-qb66nnsux4] .teacher-shell-appbar .mud-typography,
[b-qb66nnsux4] .teacher-shell-appbar .mud-button-label,
[b-qb66nnsux4] .teacher-shell-appbar .mud-icon-button-label {
    color: #FFFFFF !important;
}

[b-qb66nnsux4] .teacher-shell-menu .mud-button-root {
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    min-width: 40px;
}

[b-qb66nnsux4] .teacher-shell-menu .mud-button-root:hover {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.16);
}

.teacher-shell-context[b-qb66nnsux4] {
    min-width: 0;
    flex: 1;
}

.teacher-shell-home[b-qb66nnsux4] {
    color: #FFFFFF !important;
    text-transform: none;
}

.teacher-shell-home-logo[b-qb66nnsux4] {
    height: 30px;
    width: auto;
    object-fit: contain;
    margin-right: 8px;
}

[b-qb66nnsux4] .teacher-shell-context .mud-typography {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: min(52vw, 560px);
}

.teacher-shell-breadcrumbs[b-qb66nnsux4] {
    border: 1px solid #E3D9D5;
    border-radius: 12px;
    background: #FAF7F6;
    padding: 8px 14px 10px;
    font-size: 0.85rem;
    color: var(--mud-palette-text-secondary);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow-x: auto;
}

.teacher-shell-breadcrumbs[b-qb66nnsux4]  .mud-breadcrumb-separator,
.teacher-shell-breadcrumbs[b-qb66nnsux4]  .mud-breadcrumb-item,
.teacher-shell-breadcrumbs[b-qb66nnsux4]  .mud-link {
    color: var(--teacher-text-secondary);
}

.teacher-shell-breadcrumbs[b-qb66nnsux4]  .mud-breadcrumb-item {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .teacher-shell-context .mud-typography[b-qb66nnsux4] {
        max-width: 40vw;
    }
}

@media (max-width: 700px) {
    .teacher-shell-context[b-qb66nnsux4] {
        display: none;
    }
}
/* /Pages/Admin/AdminHome.razor.rz.scp.css */
.admin-home-clean-root[b-01sh1epkb2] {
    gap: 24px;
}

.admin-home-clean-panel[b-01sh1epkb2] {
    border: 1px solid var(--mud-palette-lines-default);
    background: var(--mud-palette-surface);
    border-radius: 12px;
    padding: 16px;
}

.admin-home-clean-title[b-01sh1epkb2] {
    color: var(--mud-palette-primary);
    font-weight: 700;
}

.admin-home-clean-subtitle[b-01sh1epkb2] {
    color: var(--mud-palette-text-secondary);
}

.admin-home-title-wrap[b-01sh1epkb2] {
    padding-bottom: 8px;
}

.admin-grid[b-01sh1epkb2] {
    align-items: stretch;
}

.admin-grid[b-01sh1epkb2]  .admin-section-card {
    min-height: 100%;
}

.admin-grid[b-01sh1epkb2]  .admin-tile:last-child {
    margin-bottom: 0 !important;
}
/* /Pages/Admin/ClassGroupDetail.razor.rz.scp.css */
.classdetail-page[b-w2msnmln52] {
    gap: 16px;
}

.classdetail-page[b-w2msnmln52]  .admin-ui-header-panel,
.classdetail-page[b-w2msnmln52]  .admin-ui-section-panel {
    border: 1px solid #E3D9D5;
    border-radius: 16px;
    background: #FAF7F6;
    box-shadow: 0 8px 20px rgba(58, 26, 23, 0.08);
}

.classdetail-page[b-w2msnmln52]  .admin-ui-header-top,
.classdetail-page[b-w2msnmln52]  .admin-ui-section-header {
    border-bottom: 1px solid #E3D9D5;
    background: #FAF7F6;
}

.classdetail-page[b-w2msnmln52]  .admin-ui-header-top::before,
.classdetail-page[b-w2msnmln52]  .admin-ui-section-header::before {
    background: #7B2C2C;
}

.classdetail-page[b-w2msnmln52]  .admin-ui-header-top .mud-typography,
.classdetail-page[b-w2msnmln52]  .admin-ui-section-header .mud-typography {
    color: #1E1B1A;
}

.classdetail-page[b-w2msnmln52]  .admin-ui-header-body,
.classdetail-page[b-w2msnmln52]  .admin-ui-section-body {
    background: #FAF7F6;
}

.classdetail-page[b-w2msnmln52]  .admin-ui-header-body .mud-typography {
    color: #5F5754;
}

.classdetail-title[b-w2msnmln52] {
    font-weight: 700;
    color: #1E1B1A;
}

.classdetail-stat[b-w2msnmln52] {
    border: 1px solid #E3D9D5;
    border-radius: 12px;
    background: #F4EFED;
    padding: 12px 14px;
}

.classdetail-stat-label[b-w2msnmln52] {
    color: #5F5754;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.classdetail-stat-value[b-w2msnmln52] {
    color: #1E1B1A;
    font-weight: 500;
}

.classdetail-loading-state[b-w2msnmln52] {
    padding: 32px;
}

.classdetail-tabs[b-w2msnmln52] {
    background: #FAF7F6;
}

.classdetail-tabs[b-w2msnmln52]  .mud-tabs-toolbar {
    border-bottom: 1px solid #E3D9D5;
    background: #FAF7F6;
    overflow-x: auto;
    scrollbar-width: thin;
}

.classdetail-tabs[b-w2msnmln52]  .mud-tabs-toolbar-wrapper {
    flex-wrap: nowrap;
}

.classdetail-tabs[b-w2msnmln52]  .mud-tab {
    min-height: 42px;
    color: #5F5754;
    white-space: nowrap;
    border-radius: 8px;
}

.classdetail-tabs[b-w2msnmln52]  .mud-tab:hover {
    color: #3C0C0B;
    background: #F4EFED;
}

.classdetail-tabs[b-w2msnmln52]  .mud-tab.mud-tab-active {
    color: #1E1B1A;
    background: #F4EFED;
}

.classdetail-tabs[b-w2msnmln52]  .mud-tab:nth-of-type(5) {
    margin-left: 10px;
    padding-left: 18px;
    border-left: 1px solid #E3D9D5;
}

.classdetail-tabs[b-w2msnmln52]  .mud-tabs-slider {
    background: #3C0C0B;
}

.classdetail-tab-panel[b-w2msnmln52] {
    padding-top: 14px;
}

.classdetail-section-grid[b-w2msnmln52] {
    margin-top: 2px;
}

.classdetail-info-item[b-w2msnmln52] {
    border: 1px solid #E3D9D5;
    border-radius: 12px;
    background: #F4EFED;
    padding: 12px 14px;
}

.classdetail-info-label[b-w2msnmln52] {
    color: #5F5754;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.classdetail-info-value[b-w2msnmln52] {
    color: #1E1B1A;
    font-weight: 600;
}

.classdetail-section-subtitle[b-w2msnmln52] {
    color: #5F5754;
}

.classdetail-table[b-w2msnmln52] {
    border: 1px solid #E3D9D5;
    border-radius: 10px;
    overflow: hidden;
}

.classdetail-table[b-w2msnmln52]  .mud-table-root {
    background: #FAF7F6;
}

.classdetail-table[b-w2msnmln52]  .mud-table-head th {
    background: #F4EFED;
    color: #5F5754;
    border-bottom: 1px solid #E3D9D5;
}

.classdetail-table[b-w2msnmln52]  .mud-table-body td {
    color: #1E1B1A;
    border-bottom: 1px solid #EFE6E2;
}

.classdetail-table[b-w2msnmln52]  .mud-table-row:hover td {
    background: #F4EFED;
}

.classdetail-placeholder[b-w2msnmln52] {
    border: 1px solid #E3D9D5;
    border-radius: 12px;
    background: #F4EFED;
    padding: 16px;
}
/* /Pages/Admin/ClassGroups.razor.rz.scp.css */
.classgroups-page[b-vchhul4w50] {
    gap: 16px;
}

.classgroups-page[b-vchhul4w50]  .admin-ui-header-panel,
.classgroups-page[b-vchhul4w50]  .admin-ui-section-panel {
    border: 1px solid #E3D9D5;
    border-radius: 16px;
    background: #FAF7F6;
    box-shadow: 0 8px 20px rgba(58, 26, 23, 0.08);
}

.classgroups-page[b-vchhul4w50]  .admin-ui-header-top,
.classgroups-page[b-vchhul4w50]  .admin-ui-section-header {
    border-bottom: 1px solid #E3D9D5;
    background: #FAF7F6;
}

.classgroups-page[b-vchhul4w50]  .admin-ui-header-top::before,
.classgroups-page[b-vchhul4w50]  .admin-ui-section-header::before {
    background: #7B2C2C;
}

.classgroups-page[b-vchhul4w50]  .admin-ui-header-top .mud-typography,
.classgroups-page[b-vchhul4w50]  .admin-ui-section-header .mud-typography {
    color: #1E1B1A;
}

.classgroups-page[b-vchhul4w50]  .admin-ui-header-body,
.classgroups-page[b-vchhul4w50]  .admin-ui-section-body {
    background: #FAF7F6;
}

.classgroups-page[b-vchhul4w50]  .admin-ui-header-body .mud-typography {
    color: #5F5754;
}

.classgroups-page[b-vchhul4w50]  .mud-input-control .mud-input-slot,
.classgroups-page[b-vchhul4w50]  .mud-select-input {
    background: #F4EFED;
}

.classgroups-loading-state[b-vchhul4w50] {
    padding: 32px;
}

.classgroups-table[b-vchhul4w50] {
    border: 1px solid #E3D9D5;
    border-radius: 10px;
    overflow: hidden;
}

.classgroups-table[b-vchhul4w50]  .mud-table-root {
    background: #FAF7F6;
}

.classgroups-table[b-vchhul4w50]  .mud-table-head th {
    background: #F4EFED;
    color: #5F5754;
    border-bottom: 1px solid #E3D9D5;
}

.classgroups-table[b-vchhul4w50]  .mud-table-body td {
    color: #1E1B1A;
    border-bottom: 1px solid #EFE6E2;
}

.classgroups-table[b-vchhul4w50]  .mud-table-row:hover td {
    background: #F4EFED;
}

.classgroups-empty-state[b-vchhul4w50] {
    padding: 32px;
    border: 1px solid #E3D9D5;
    border-radius: 14px;
    background: #F4EFED;
}

.classgroups-cards-grid[b-vchhul4w50] {
    margin-top: 2px;
    row-gap: 8px;
}

/* /Pages/Admin/ClassGroupStudents.razor.rz.scp.css */

.classstudents-page[b-kq6jsfl9ca] {
    gap: 16px;
}

.classstudents-page[b-kq6jsfl9ca]  .admin-ui-header-panel,
.classstudents-page[b-kq6jsfl9ca]  .admin-ui-section-panel {
    border: 1px solid #E3D9D5;
    border-radius: 16px;
    background: #FAF7F6;
    box-shadow: 0 8px 20px rgba(58, 26, 23, 0.08);
}

.classstudents-page[b-kq6jsfl9ca]  .admin-ui-header-top,
.classstudents-page[b-kq6jsfl9ca]  .admin-ui-section-header {
    border-bottom: 1px solid #E3D9D5;
    background: #FAF7F6;
}

.classstudents-page[b-kq6jsfl9ca]  .admin-ui-header-top::before,
.classstudents-page[b-kq6jsfl9ca]  .admin-ui-section-header::before {
    background: #7B2C2C;
}

.classstudents-page[b-kq6jsfl9ca]  .admin-ui-header-top .mud-typography,
.classstudents-page[b-kq6jsfl9ca]  .admin-ui-section-header .mud-typography {
    color: #1E1B1A;
}

.classstudents-page[b-kq6jsfl9ca]  .admin-ui-header-body,
.classstudents-page[b-kq6jsfl9ca]  .admin-ui-section-body {
    background: #FAF7F6;
}

.classstudents-page[b-kq6jsfl9ca]  .admin-ui-header-body .mud-typography,
.classstudents-page[b-kq6jsfl9ca]  .admin-ui-section-body .mud-typography {
    color: #5F5754;
}

.classstudents-page[b-kq6jsfl9ca]  .mud-input-control .mud-input-slot,
.classstudents-page[b-kq6jsfl9ca]  .mud-select-input {
    background: #F4EFED;
}

.classstudents-title[b-kq6jsfl9ca] {
    font-weight: 700;
    color: #1E1B1A;
}

.classstudents-loading-state[b-kq6jsfl9ca] {
    padding: 32px;
}

.classstudents-toolbar[b-kq6jsfl9ca] {
    gap: 14px;
}

.classstudents-search[b-kq6jsfl9ca] {
    min-width: 260px;
    max-width: 440px;
}

.classstudents-counts[b-kq6jsfl9ca] {
    flex-wrap: wrap;
}

.classstudents-count-label[b-kq6jsfl9ca] {
    color: #5F5754;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.classstudents-list[b-kq6jsfl9ca] {
    margin-top: 2px;
}

.classstudents-item[b-kq6jsfl9ca] {
    border: 1px solid #E3D9D5;
    border-radius: 12px;
    background: #FAF7F6;
    transition: border-color 0.14s ease, background-color 0.14s ease, box-shadow 0.14s ease;
}

.classstudents-item:hover[b-kq6jsfl9ca],
.classstudents-item:focus-within[b-kq6jsfl9ca] {
    background: #F4EFED;
    border-color: #8A3A35;
    box-shadow: 0 8px 18px rgba(123, 44, 44, 0.14);
}

.classstudents-item-row[b-kq6jsfl9ca] {
    padding: 12px 14px;
    gap: 12px;
}

.classstudents-item-main[b-kq6jsfl9ca] {
    min-width: 0;
}

.classstudents-item-name[b-kq6jsfl9ca] {
    color: #1E1B1A;
    font-weight: 600;
}

.classstudents-item-email[b-kq6jsfl9ca] {
    color: #5F5754;
    word-break: break-word;
}

.classstudents-item-meta[b-kq6jsfl9ca] {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.classstudents-primary-chip[b-kq6jsfl9ca] {
    min-width: 92px;
    justify-content: center;
}

.classstudents-item-date[b-kq6jsfl9ca] {
    color: #5F5754;
}

.classstudents-remove-btn[b-kq6jsfl9ca] {
    cursor: pointer;
}

@media (max-width: 900px) {
    .classstudents-toolbar[b-kq6jsfl9ca] {
        flex-direction: column;
        align-items: stretch;
    }

    .classstudents-search[b-kq6jsfl9ca] {
        min-width: 0;
        max-width: 100%;
    }

    .classstudents-item-row[b-kq6jsfl9ca] {
        flex-direction: column;
        align-items: stretch;
    }

    .classstudents-item-meta[b-kq6jsfl9ca] {
        justify-content: flex-start;
    }
}
/* /Pages/Admin/ClassGroupSubjects.razor.rz.scp.css */
.classsubjects-page[b-ibyrjgdeos] {
    gap: 16px;
}

.classsubjects-page-embedded[b-ibyrjgdeos] {
    gap: 12px;
}

.classsubjects-page[b-ibyrjgdeos]  .admin-ui-header-panel,
.classsubjects-page[b-ibyrjgdeos]  .admin-ui-section-panel {
    border: 1px solid #E3D9D5;
    border-radius: 16px;
    background: #FAF7F6;
    box-shadow: 0 8px 20px rgba(58, 26, 23, 0.08);
}

.classsubjects-page[b-ibyrjgdeos]  .admin-ui-header-top,
.classsubjects-page[b-ibyrjgdeos]  .admin-ui-section-header {
    border-bottom: 1px solid #E3D9D5;
    background: #FAF7F6;
}

.classsubjects-page[b-ibyrjgdeos]  .admin-ui-header-top::before,
.classsubjects-page[b-ibyrjgdeos]  .admin-ui-section-header::before {
    background: #7B2C2C;
}

.classsubjects-page[b-ibyrjgdeos]  .admin-ui-header-top .mud-typography,
.classsubjects-page[b-ibyrjgdeos]  .admin-ui-section-header .mud-typography {
    color: #1E1B1A;
}

.classsubjects-page[b-ibyrjgdeos]  .admin-ui-header-body,
.classsubjects-page[b-ibyrjgdeos]  .admin-ui-section-body {
    background: #FAF7F6;
}

.classsubjects-page[b-ibyrjgdeos]  .admin-ui-header-body .mud-typography,
.classsubjects-page[b-ibyrjgdeos]  .admin-ui-section-body .mud-typography {
    color: #5F5754;
}

.classsubjects-loading-state[b-ibyrjgdeos] {
    padding: 32px;
}

.classsubjects-overview-counts[b-ibyrjgdeos] {
    flex-wrap: wrap;
}

.classsubjects-overview-counts .mud-button-root[b-ibyrjgdeos] {
    cursor: pointer;
}

.classsubjects-count-label[b-ibyrjgdeos] {
    color: #5F5754;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.classsubjects-assignment-list[b-ibyrjgdeos] {
    margin-top: 2px;
}

.classsubjects-assignment-item[b-ibyrjgdeos] {
    border: 1px solid #E3D9D5;
    border-radius: 12px;
    background: #FAF7F6;
    overflow: hidden;
    transition: border-color 0.14s ease, box-shadow 0.14s ease, background-color 0.14s ease;
}

.classsubjects-assignment-item:hover[b-ibyrjgdeos],
.classsubjects-assignment-item:focus-within[b-ibyrjgdeos] {
    background: #F4EFED;
    border-color: #8A3A35;
    box-shadow: 0 8px 18px rgba(123, 44, 44, 0.14);
}

.classsubjects-assignment-row[b-ibyrjgdeos] {
    border: 0;
    border-radius: 0;
}

.classsubjects-assignment-row[b-ibyrjgdeos]  .admin-ui-action-row {
    cursor: pointer;
}

.classsubjects-assignment-actions[b-ibyrjgdeos] {
    justify-content: flex-end;
    padding: 6px 10px 10px;
    border-top: 1px solid #E3D9D5;
    background: #FAF7F6;
}

.classsubjects-dialog-table[b-ibyrjgdeos] {
    border: 1px solid #E3D9D5;
    border-radius: 10px;
    overflow: hidden;
}

.classsubjects-dialog-table[b-ibyrjgdeos]  .mud-table-root {
    background: #FAF7F6;
}

.classsubjects-dialog-table[b-ibyrjgdeos]  .mud-table-head th {
    color: #5F5754;
    background: #F4EFED;
    border-bottom: 1px solid #E3D9D5;
}
/* /Pages/Admin/Components/AdminActionRow.razor.rz.scp.css */
.admin-ui-action-row[b-iecm6x6gc0] {
    width: 100%;
    border: 1px solid #323232;
    border-radius: 12px;
    background: #252525;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.admin-ui-action-row:hover[b-iecm6x6gc0] {
    background: #2F2F2F;
    border-color: #C75C5C;
    box-shadow: 0 0 0 1px rgba(199, 92, 92, 0.24);
}

.admin-ui-action-row.classsubjects-assignment-row[b-iecm6x6gc0] {
    background: var(--mud-palette-surface);
    border-color: var(--mud-palette-lines-default);
}

.admin-ui-action-row.classsubjects-assignment-row:hover[b-iecm6x6gc0] {
    background: var(--mud-palette-background-grey);
    border-color: #C75C5C;
}

.admin-ui-action-row:focus-visible[b-iecm6x6gc0] {
    outline: 2px solid #C75C5C;
    outline-offset: 2px;
}

.admin-ui-action-row:disabled[b-iecm6x6gc0] {
    opacity: 0.6;
    cursor: not-allowed;
}

.admin-ui-action-row-main[b-iecm6x6gc0] {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.admin-ui-action-row-icon[b-iecm6x6gc0] {
    color: var(--mud-palette-text-secondary);
    font-size: 1.1rem;
}

.admin-ui-action-row-text[b-iecm6x6gc0] {
    min-width: 0;
}

.admin-ui-action-row-text .mud-typography[b-iecm6x6gc0] {
    color: var(--mud-palette-text-primary);
    font-weight: 600;
}

.admin-ui-action-row-description[b-iecm6x6gc0] {
    color: var(--mud-palette-text-secondary);
}

.admin-ui-action-row-meta[b-iecm6x6gc0] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
/* /Pages/Admin/Components/AdminActionTile.razor.rz.scp.css */
.admin-tile[b-ixsr0f278p] {
    width: 100%;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 12px;
    background: var(--mud-palette-surface);
    cursor: pointer;
    transition: all 0.15s ease;
}

.admin-tile:hover[b-ixsr0f278p] {
    background: rgba(0, 0, 0, 0.04);
    border-color: #3C0C0B;
}

.admin-tile:focus-visible[b-ixsr0f278p] {
    outline: 2px solid #3C0C0B;
    outline-offset: 2px;
}

.admin-tile-row[b-ixsr0f278p] {
    min-width: 0;
    flex-wrap: nowrap;
}

.admin-tile-icon[b-ixsr0f278p] {
    color: var(--mud-palette-secondary);
    flex-shrink: 0;
}

.admin-tile-copy[b-ixsr0f278p] {
    min-width: 0;
}

.admin-tile-title[b-ixsr0f278p] {
    color: var(--mud-palette-text-primary);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-tile-subtitle[b-ixsr0f278p] {
    color: var(--mud-palette-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-tile-chevron[b-ixsr0f278p] {
    color: var(--mud-palette-text-secondary);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .admin-tile[b-ixsr0f278p] {
        width: 100%;
    }
}
/* /Pages/Admin/Components/AdminCountBadge.razor.rz.scp.css */
.admin-ui-count-badge[b-03av8nnlel] {
    background: #7A2A2A;
    color: #FFFFFF;
    border-radius: 999px;
    min-width: 36px;
    justify-content: center;
    font-weight: 600;
    border: 1px solid rgba(199, 92, 92, 0.48);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
/* /Pages/Admin/Components/AdminHeaderPanel.razor.rz.scp.css */
.admin-ui-header-panel[b-utywhn2pnq] {
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 16px;
    background: var(--mud-palette-surface);
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(24, 12, 12, 0.32);
}

.admin-ui-header-top[b-utywhn2pnq] {
    position: relative;
    padding: 14px 18px;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    padding-left: 22px;
}

.admin-ui-header-top[b-utywhn2pnq]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--mud-palette-primary);
}

.admin-ui-header-icon[b-utywhn2pnq] {
    color: var(--mud-palette-info);
    font-size: 1.15rem;
}

.admin-ui-header-body[b-utywhn2pnq] {
    padding: 12px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-ui-header-top .mud-typography[b-utywhn2pnq] {
    font-weight: 600;
}

.admin-ui-header-body .mud-typography[b-utywhn2pnq] {
    color: var(--mud-palette-text-secondary);
}

@media (max-width: 900px) {
    .admin-ui-header-top[b-utywhn2pnq],
    .admin-ui-header-body[b-utywhn2pnq] {
        padding-left: 14px;
        padding-right: 14px;
    }

    .admin-ui-header-top[b-utywhn2pnq] {
        padding-left: 18px;
    }
}
/* /Pages/Admin/Components/AdminSectionCard.razor.rz.scp.css */
.admin-section-card[b-htbgz6u7vw] {
    background-color: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-lines-default);
    border-top: 2px solid var(--mud-palette-primary);
    box-shadow: var(--mud-elevation-1);
    border-radius: 16px;
    height: 100%;
}

.admin-section-head[b-htbgz6u7vw] {
    gap: 8px;
    padding: 12px 14px;
    margin: -8px -8px 14px -8px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--mud-palette-primary) 10%, var(--mud-palette-surface) 90%);
    border: 1px solid color-mix(in srgb, var(--mud-palette-primary) 22%, var(--mud-palette-lines-default) 78%);
}

.admin-section-icon[b-htbgz6u7vw] {
    color: var(--mud-palette-info);
    font-size: 1.1rem;
}

.admin-section-title[b-htbgz6u7vw] {
    color: color-mix(in srgb, var(--mud-palette-text-primary) 90%, #000 10%);
    font-weight: 600;
    line-height: 1.2;
}

.admin-section-subtitle[b-htbgz6u7vw] {
    color: var(--mud-palette-text-secondary);
    line-height: 1.2;
}

.admin-section-body[b-htbgz6u7vw] {
    display: flex;
    flex-direction: column;
    gap: 0;
}
/* /Pages/Admin/Components/AdminSectionPanel.razor.rz.scp.css */
.admin-ui-section-panel[b-sz7im8q12p] {
    height: 100%;
    border: 1px solid #2A2A2A;
    border-radius: 16px;
    background: #1E1E1E;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.admin-ui-section-header[b-sz7im8q12p] {
    position: relative;
    padding: 16px 20px 14px;
    border-bottom: 1px solid #2A2A2A;
    padding-left: 24px;
}

.admin-ui-section-header[b-sz7im8q12p]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #7B2C2C;
}

.admin-ui-section-icon[b-sz7im8q12p] {
    color: #C75C5C;
    font-size: 1.15rem;
}

.admin-ui-section-body[b-sz7im8q12p] {
    padding: 16px;
}

@media (max-width: 900px) {
    .admin-ui-section-header[b-sz7im8q12p] {
        padding-left: 14px;
        padding-right: 14px;
        padding-left: 18px;
    }
}
/* /Pages/Admin/Components/AdminStatChip.razor.rz.scp.css */
.admin-stat-chip[b-b1ro56uq74] {
    border: 1px solid var(--mud-palette-warning) !important;
    color: var(--mud-palette-text-primary) !important;
    border-radius: 999px;
    min-width: 40px;
    min-height: 24px;
    padding: 0 8px;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--mud-elevation-1);
}
/* /Pages/Admin/Components/DashboardSection.razor.rz.scp.css */
.dashboard-section-card[b-1peojvywpm] {
    border-radius: 16px;
}

.dashboard-section-header[b-1peojvywpm] {
    padding: 14px 16px;
    border-bottom: 1px solid var(--mud-palette-divider);
}

.dashboard-section-header-icon[b-1peojvywpm] {
    font-size: 1.55rem;
}

.dashboard-section-body[b-1peojvywpm] {
    padding: 12px;
    background: var(--mud-palette-surface);
}

.dashboard-section-list[b-1peojvywpm] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dashboard-section-grid[b-1peojvywpm] {
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--mud-palette-divider);
    border-radius: 12px;
    overflow: hidden;
}

.dashboard-section-grid-row[b-1peojvywpm] {
    width: 100%;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 92px;
    align-items: center;
    column-gap: 8px;
    border: 0;
    border-bottom: 1px solid var(--mud-palette-divider);
    background: var(--mud-palette-surface);
    padding: 10px 12px;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.16s ease;
}

.dashboard-section-grid-row:last-child[b-1peojvywpm] {
    border-bottom: 0;
}

.dashboard-section-grid-row:focus-visible[b-1peojvywpm] {
    outline: 2px solid var(--mud-palette-primary);
    outline-offset: -2px;
}

.dashboard-section-grid-icon-cell[b-1peojvywpm] {
    width: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dashboard-section-grid-label-cell[b-1peojvywpm] {
    min-width: 0;
}

.dashboard-section-grid-label-cell .mud-typography[b-1peojvywpm] {
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-section-grid-count-cell[b-1peojvywpm] {
    width: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
}

.dashboard-section-grid-row:hover[b-1peojvywpm] {
    background: var(--mud-palette-action-default-hover);
}

.dashboard-section-grid-icon[b-1peojvywpm] {
    font-size: 1.55rem;
}

.dashboard-section-grid-row[b-1peojvywpm],
.dashboard-section-grid-row *[b-1peojvywpm] {
    cursor: pointer;
}
/* /Pages/Admin/Components/DashboardSectionListItem.razor.rz.scp.css */
.dashboard-list-item[b-39a05z5m09] {
    width: 100%;
    border: 1px solid var(--mud-palette-divider);
    border-radius: 12px;
    background: var(--mud-palette-surface);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}

.dashboard-list-item:hover[b-39a05z5m09] {
    background: var(--mud-palette-action-default-hover);
    border-color: var(--mud-palette-primary);
}

.dashboard-list-item:focus-visible[b-39a05z5m09] {
    outline: 2px solid var(--mud-palette-primary);
    outline-offset: 2px;
}

.dashboard-list-item-main[b-39a05z5m09] {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.dashboard-list-item-icon[b-39a05z5m09] {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.dashboard-list-item-label[b-39a05z5m09] {
    font-weight: 600;
}

.dashboard-list-item-meta[b-39a05z5m09] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.dashboard-list-item-arrow[b-39a05z5m09] {
    color: var(--mud-palette-text-secondary);
    font-size: 1.2rem;
}
/* /Pages/Admin/Components/MatchingImageCropDialog.razor.rz.scp.css */
[b-v0gq6ohy81] .matching-crop-workspace {
    padding: 12px;
}

[b-v0gq6ohy81] .matching-crop-upload-panel {
    position: relative;
    z-index: 5;
    background: rgba(255, 255, 255, 0.98);
}

[b-v0gq6ohy81] .matching-crop-surface {
    position: relative;
    width: 100%;
    max-width: min(1200px, 95vw);
    max-height: calc(100vh - 280px);
    margin: 0 auto;
    aspect-ratio: var(--matching-image-aspect, 4 / 3);
    overflow: auto;
    border-radius: 12px;
    background: #0f172a;
    touch-action: none;
    outline: none;
}

[b-v0gq6ohy81] .matching-crop-image-layer {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: var(--matching-image-aspect, 4 / 3);
    margin: 0 auto;
}

[b-v0gq6ohy81] .matching-crop-source-image {
    width: 100%;
    height: auto;
    object-fit: var(--matching-image-fit, cover);
    user-select: none;
    pointer-events: none;
    display: block;
}

[b-v0gq6ohy81] .matching-crop-mask {
    position: absolute;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 9999px rgba(15, 23, 42, 0.45);
    border-radius: var(--matching-image-radius, 10px);
    cursor: default;
    aspect-ratio: var(--matching-image-aspect, 4 / 3);
    pointer-events: auto;
}

[b-v0gq6ohy81] .matching-crop-cut-btn {
    position: absolute;
    right: -18px;
    top: -18px;
    background-color: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid rgba(15, 23, 42, 0.25);
}

[b-v0gq6ohy81] .matching-crop-footer {
    background: #000000;
    color: #ffffff;
    margin: -8px -16px -8px -16px;
    padding: 10px 16px;
}

[b-v0gq6ohy81] .matching-crop-footer .mud-typography {
    color: #ffffff !important;
    font-size: 0.95rem !important;
    line-height: 1.35;
}

[b-v0gq6ohy81] .matching-crop-footer .mud-button-root {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
}
/* /Pages/Admin/Index.razor.rz.scp.css */
.admin-dashboard-panels[b-kcqtqe988v] {
    row-gap: 8px;
}

.admin-dashboard-panel[b-kcqtqe988v] {
    min-height: 100%;
}

.admin-dashboard-panel-body[b-kcqtqe988v] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
/* /Pages/Admin/Modules.razor.rz.scp.css */
.admin-modules-theme[b-xu498fh8qb]  .teacherdesk-panel-header {
    background: linear-gradient(130deg, #8B1E3F 0%, #B23A48 60%, #5A1125 115%) !important;
    color: #fff !important;
}

.admin-modules-theme[b-xu498fh8qb]  .teacherdesk-action-primary {
    background: linear-gradient(130deg, #8B1E3F 0%, #B23A48 60%, #5A1125 115%) !important;
    color: #fff !important;
}

.admin-modules-theme[b-xu498fh8qb]  .teacherdesk-action-icon {
    border-color: rgba(139, 30, 63, .35) !important;
}

.admin-modules-theme[b-xu498fh8qb]  .teacherdesk-action-icon:hover {
    background-color: rgba(139, 30, 63, 0.12) !important;
}

.admin-modules-theme[b-xu498fh8qb]  .teacherdesk-list-item-selected {
    background-color: color-mix(in srgb, #8B1E3F 14%, var(--mud-palette-surface) 86%) !important;
    border-left: 3px solid #8B1E3F !important;
}

.admin-modules-theme[b-xu498fh8qb]  .teacherdesk-schoollevel-header {
    background-color: color-mix(in srgb, #8B1E3F 6%, var(--mud-palette-surface) 94%) !important;
}
/* /Pages/Admin/TeachingAssignments.razor.rz.scp.css */
.teachingassignments-page[b-m4aq8q0ipd] {
    gap: 16px;
}

.teachingassignments-page[b-m4aq8q0ipd]  .admin-ui-header-panel,
.teachingassignments-page[b-m4aq8q0ipd]  .admin-ui-section-panel {
    border: 1px solid #E3D9D5;
    border-radius: 16px;
    background: #FAF7F6;
    box-shadow: 0 8px 20px rgba(58, 26, 23, 0.08);
}

.teachingassignments-page[b-m4aq8q0ipd]  .admin-ui-header-top,
.teachingassignments-page[b-m4aq8q0ipd]  .admin-ui-section-header {
    border-bottom: 1px solid #E3D9D5;
    background: #FAF7F6;
}

.teachingassignments-page[b-m4aq8q0ipd]  .admin-ui-header-top::before,
.teachingassignments-page[b-m4aq8q0ipd]  .admin-ui-section-header::before {
    background: #7B2C2C;
}

.teachingassignments-page[b-m4aq8q0ipd]  .admin-ui-header-top .mud-typography,
.teachingassignments-page[b-m4aq8q0ipd]  .admin-ui-section-header .mud-typography {
    color: #1E1B1A;
}

.teachingassignments-page[b-m4aq8q0ipd]  .admin-ui-header-body,
.teachingassignments-page[b-m4aq8q0ipd]  .admin-ui-section-body {
    background: #FAF7F6;
}

.teachingassignments-page[b-m4aq8q0ipd]  .admin-ui-header-body .mud-typography,
.teachingassignments-page[b-m4aq8q0ipd]  .admin-ui-section-body .mud-typography {
    color: #5F5754;
}

.teachingassignments-counts[b-m4aq8q0ipd] {
    flex-wrap: wrap;
}

.teachingassignments-count-label[b-m4aq8q0ipd],
.teachingassignments-secondary[b-m4aq8q0ipd] {
    color: #5F5754;
}

.teachingassignments-count-label[b-m4aq8q0ipd] {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.teachingassignments-loading-state[b-m4aq8q0ipd] {
    padding: 32px;
}

.teachingassignments-table[b-m4aq8q0ipd] {
    border: 1px solid #E3D9D5;
    border-radius: 10px;
    overflow: hidden;
}

.teachingassignments-table[b-m4aq8q0ipd]  .mud-table-root {
    background: #FAF7F6;
}

.teachingassignments-table[b-m4aq8q0ipd]  .mud-table-container {
    border-radius: 10px;
}

.teachingassignments-table[b-m4aq8q0ipd]  .mud-table-head th {
    background: #F4EFED;
    color: #5F5754;
    border-bottom: 1px solid #E3D9D5;
    font-weight: 600;
}

.teachingassignments-table[b-m4aq8q0ipd]  .mud-table-body td {
    color: #1E1B1A;
    border-bottom: 1px solid #EFE6E2;
}

.teachingassignments-table[b-m4aq8q0ipd]  .mud-table-row:hover td {
    background: #F4EFED;
}

.teachingassignments-teacher-name[b-m4aq8q0ipd] {
    color: #1E1B1A;
    font-weight: 600;
}

.teachingassignments-action-btn[b-m4aq8q0ipd] {
    cursor: pointer;
}

@media (max-width: 900px) {
    .teachingassignments-toolbar[b-m4aq8q0ipd] {
        flex-direction: column;
        align-items: stretch;
    }
}
/* /Pages/Login.razor.rz.scp.css */
.qr-code-wrap[b-zehh3ty64x] {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
}

.qr-code-wrap[b-zehh3ty64x]  svg {
    display: block;
    margin: 0 auto;
    width: clamp(180px, 55vw, 280px);
    max-width: 100%;
    height: auto;
    overflow: visible;
}

.qr-countdown-text[b-zehh3ty64x] {
    position: relative;
    z-index: 2;
    margin-top: 2px;
}

.qr-countdown-progress[b-zehh3ty64x] {
    width: min(240px, 85%);
    position: relative;
    z-index: 2;
    margin-top: 2px;
}
/* /Pages/Teacher/Components/TeacherStationEditorOverlayDialog.razor.rz.scp.css */
[b-d6c4oe29mg] .station-editor-overlay-dialog .mud-dialog {
    width: min(96vw, 1600px);
    height: min(92vh, 980px) !important;
    max-height: min(92vh, 980px) !important;
    min-height: min(92vh, 980px) !important;
}

[b-d6c4oe29mg] .station-editor-overlay-title {
    width: 100%;
}

[b-d6c4oe29mg] .station-editor-overlay-main-title {
    font-weight: 700;
}

[b-d6c4oe29mg] .station-editor-overlay-content {
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px;
}

[b-d6c4oe29mg] .station-editor-overlay-dialog .mud-dialog-container,
[b-d6c4oe29mg] .station-editor-overlay-dialog .mud-dialog-content,
[b-d6c4oe29mg] .station-editor-overlay-dialog .mud-dialog-title,
[b-d6c4oe29mg] .station-editor-overlay-dialog .mud-dialog-actions {
    box-sizing: border-box;
}

[b-d6c4oe29mg] .station-editor-overlay-type-chip {
    background-color: #FFFFFF !important;
    color: #111827 !important;
    font-weight: 700;
    min-height: 36px;
    padding-inline: 14px;
}

[b-d6c4oe29mg] .station-editor-overlay-type-chip .mud-chip-content,
[b-d6c4oe29mg] .station-editor-overlay-type-chip .mud-icon-root {
    color: #111827 !important;
}
/* /Pages/Teacher/Index.razor.rz.scp.css */
.teacher-index-page[b-kgi4y6chh4] {
    gap: 16px;
}

.teacher-index-entry-panel[b-kgi4y6chh4] {
    border: 1px solid #E3D9D5;
    border-radius: 16px;
    background: #FAF7F6;
}

.teacher-index-entry-panel[b-kgi4y6chh4]  .admin-ui-section-header {
    border-bottom: 1px solid #E3D9D5;
    background: #FAF7F6;
}

.teacher-index-entry-panel[b-kgi4y6chh4]  .admin-ui-section-header::before {
    background: #4897AC;
}

.teacher-index-entry-panel[b-kgi4y6chh4]  .admin-ui-section-icon {
    color: #4897AC;
}

.teacher-index-entry-panel[b-kgi4y6chh4]  .admin-ui-section-body {
    background: #FAF7F6;
}

.teacher-index-entry-panel[b-kgi4y6chh4]  .admin-tile {
    background: #FAF7F6;
    border: 1px solid #E3D9D5;
}

.teacher-index-entry-panel[b-kgi4y6chh4]  .admin-tile:hover {
    background: #F4EFED;
    border-color: #79AFC2;
}

.teacher-index-entry-panel[b-kgi4y6chh4]  .admin-tile:focus-visible {
    outline: 2px solid #79AFC2;
}

.teacher-index-entry-panel[b-kgi4y6chh4]  .admin-tile-icon {
    color: #4897AC;
}
/* /Pages/Teacher/Modules.razor.rz.scp.css */
.teacherdesk-action-bar[b-47ajcadayc] {
    border-radius: 12px;
}

.teacherdesk-action-bar-compact-top[b-47ajcadayc] {
    margin-top: -1rem;
}

.teacherdesk-action-toolbar[b-47ajcadayc] {
    min-height: 52px;
    flex-wrap: nowrap;
}

.teacherdesk-action-primary[b-47ajcadayc] {
    flex: 0 0 auto;
}

.teacherdesk-action-select[b-47ajcadayc] {
    min-width: 240px;
    max-width: 320px;
    flex: 0 1 280px;
}

.teacherdesk-action-search[b-47ajcadayc] {
    flex: 1 1 auto;
    min-width: 320px;
}

.teacherdesk-action-bar-actions[b-47ajcadayc] {
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
}

[b-47ajcadayc] .teacherdesk-action-bar-actions .mud-button-root {
    text-transform: none;
}

[b-47ajcadayc] .teacherdesk-action-icon {
    border: 1px solid var(--mud-palette-divider);
    border-radius: 10px;
}

[b-47ajcadayc] .teacherdesk-action-icon:hover {
    background-color: color-mix(in srgb, var(--teacher-accent-400) 10%, #FFFFFF 90%);
}

[b-47ajcadayc] .teacherdesk-action-icon:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--teacher-accent-400) 45%, #FFFFFF 55%);
    outline-offset: 1px;
}

[b-47ajcadayc] .teacherdesk-panel-header {
    min-height: 50px;
    display: flex;
    align-items: center;
}

[b-47ajcadayc] .teacherdesk-panel-header .mud-stack {
    width: 100%;
}

[b-47ajcadayc] .teacherdesk-panel-header-action {
    color: var(--mud-palette-primary-text) !important;
}

[b-47ajcadayc] .teacherdesk-panel-header-action .mud-icon-root {
    color: var(--mud-palette-primary-text) !important;
}

[b-47ajcadayc] .teacherdesk-panel-header-action:hover {
    background-color: rgba(255, 255, 255, 0.16) !important;
}

[b-47ajcadayc] .teacherdesk-panel-header-action:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.75);
    outline-offset: 1px;
}

[b-47ajcadayc] .teacherdesk-panel-header-action.mud-disabled {
    color: rgba(255, 255, 255, 0.7) !important;
}

[b-47ajcadayc] .teacherdesk-panel-header-action.mud-disabled .mud-icon-root {
    color: rgba(255, 255, 255, 0.7) !important;
}

[b-47ajcadayc] .teacherdesk-list-item-selected {
    background-color: color-mix(in srgb, var(--mud-palette-primary) 12%, var(--mud-palette-surface) 88%) !important;
    border-left: 3px solid var(--mud-palette-primary);
}

[b-47ajcadayc] .teacherdesk-list-item-selected .mud-typography,
[b-47ajcadayc] .teacherdesk-list-item-selected .mud-icon-root {
    color: var(--mud-palette-text-primary);
}

[b-47ajcadayc] .teacherdesk-schoollevel-group {
    border: 1px solid var(--mud-palette-divider);
    border-radius: 10px;
}

[b-47ajcadayc] .teacherdesk-schoollevel-header {
    padding: 8px 10px;
    cursor: pointer;
    background-color: color-mix(in srgb, var(--mud-palette-primary) 4%, var(--mud-palette-surface) 96%);
}

[b-47ajcadayc] .teacherdesk-schoollevel-list {
    padding: 2px 0 6px 0;
}

.teacherdesk-row-drop-target[b-47ajcadayc] {
    width: 100%;
}

[b-47ajcadayc] .teacherdesk-reorder-active {
    outline: 2px solid color-mix(in srgb, var(--teacher-accent-400) 65%, #FFFFFF 35%);
    outline-offset: 1px;
    background-color: color-mix(in srgb, var(--teacher-accent-300) 14%, #FFFFFF 86%);
}

[b-47ajcadayc] .teacherdesk-reorder-active .row-drag-handle {
    animation: teacherdesk-reorder-pulse-b-47ajcadayc 1.2s ease-in-out infinite;
    background: color-mix(in srgb, var(--teacher-accent-500) 22%, #FFFFFF 78%);
}

@keyframes teacherdesk-reorder-pulse-b-47ajcadayc {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

[b-47ajcadayc] .teacherdesk-drag-over {
    outline: 2px dashed color-mix(in srgb, var(--teacher-accent-400) 55%, #FFFFFF 45%);
    outline-offset: 1px;
    background-color: color-mix(in srgb, var(--teacher-accent-300) 12%, #FFFFFF 88%);
}

[b-47ajcadayc] .teacherdesk-schoollevel-module-item {
    margin-left: 10px;
}

[b-47ajcadayc] .teacherdesk-preview-panel .mud-paper {
    border-radius: 16px;
}

@media (max-width: 1279.98px) {
    .teacherdesk-action-toolbar[b-47ajcadayc] {
        flex-wrap: wrap;
    }

    .teacherdesk-action-select[b-47ajcadayc] {
        min-width: 220px;
        flex: 1 1 260px;
    }

    .teacherdesk-action-search[b-47ajcadayc] {
        min-width: 260px;
        flex: 1 1 320px;
    }

    .teacherdesk-action-bar-actions[b-47ajcadayc] {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}
/* /Pages/Teacher/MyClasses.razor.rz.scp.css */
.teacher-myclasses-page[b-a0cddvyr0l] {
    gap: 16px;
}

.teacher-myclasses-grid[b-a0cddvyr0l] {
    border: 1px solid #E3D9D5;
    border-radius: 14px;
    background: #FAF7F6;
}
/* /Pages/Teacher/MySubjects.razor.rz.scp.css */
.teacher-mysubjects-page[b-6i0bpqxyb4] {
    gap: 16px;
}

.subject-card[b-6i0bpqxyb4] {
    border: 1px solid #E3D9D5;
    border-radius: 14px;
    background: #FAF7F6;
    box-shadow: 0 6px 14px rgba(58, 26, 23, 0.06);
}

.subject-card-header[b-6i0bpqxyb4] {
    background: #F4EFED;
    border-bottom: 1px solid #E3D9D5;
}

.subject-card-avatar[b-6i0bpqxyb4] {
    background-color: #FFFFFF;
}

.subject-card-avatar[b-6i0bpqxyb4]  .mud-icon-root {
    color: #3C0C0B;
}

.subject-card-title[b-6i0bpqxyb4] {
    color: #1E1B1A;
    flex: 1;
}

.subject-card-subtitle[b-6i0bpqxyb4] {
    color: #5F5754;
}

.subject-color-chip[b-6i0bpqxyb4] {
    color: #5F5754;
}
