/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* MainLayout Scoped Styles
   Most layout styles are now in app.css (Tailwind-inspired system)
   This file only contains layout-specific overrides and mobile transitions */

/* Sidebar transitions */
.sidebar[b-jlwymoi0h1] {
  transition: transform 0.3s ease;
}

/* Mobile overlay transitions */
.sidebar-overlay[b-jlwymoi0h1] {
  transition: opacity 0.3s ease;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.nav-header[b-6b6yq0i4xo] {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-brand[b-6b6yq0i4xo] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #60a5fa;
    letter-spacing: 0.5px;
}

.nav-menu[b-6b6yq0i4xo] {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
}

.nav-section[b-6b6yq0i4xo] {
    padding: 1rem 1rem 0.375rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    font-weight: 600;
}

[b-6b6yq0i4xo] .nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    border-left: 3px solid transparent;
    transition: all 0.15s ease;
    width: 100%;
    box-sizing: border-box;
    /* Touch-Target: mindestens 44px Hoehe fuer mobile */
    min-height: 44px;
}

[b-6b6yq0i4xo] .nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #f1f5f9;
}

[b-6b6yq0i4xo] .nav-item.active {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
    border-left-color: #60a5fa;
}

.nav-icon[b-6b6yq0i4xo] {
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

/* ========================================
   MOBILE NAVIGATION ANPASSUNGEN
   ======================================== */
@media (max-width: 768px) {
    .nav-header[b-6b6yq0i4xo] {
        padding-top: 4rem; /* Abstand wegen Hamburger-Button */
    }

    [b-6b6yq0i4xo] .nav-item {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .nav-icon[b-6b6yq0i4xo] {
        width: 1.75rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .nav-header[b-6b6yq0i4xo] {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .nav-brand[b-6b6yq0i4xo] {
        font-size: 1.1rem;
    }

    [b-6b6yq0i4xo] .nav-item {
        padding: 0.875rem 0.75rem;
    }

    .nav-section[b-6b6yq0i4xo] {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-9ugd4ao2fm],
.components-reconnect-repeated-attempt-visible[b-9ugd4ao2fm],
.components-reconnect-failed-visible[b-9ugd4ao2fm],
.components-pause-visible[b-9ugd4ao2fm],
.components-resume-failed-visible[b-9ugd4ao2fm],
.components-rejoining-animation[b-9ugd4ao2fm] {
    display: none;
}

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


#components-reconnect-modal[b-9ugd4ao2fm] {
    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-9ugd4ao2fm 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-9ugd4ao2fm {
    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/Courses/CompetencyEditor.razor.rz.scp.css */
.competencies-page[b-pqd0grxfqk] {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 24px;
    align-items: start;
}

@media (max-width: 800px) {
    .competencies-page[b-pqd0grxfqk] {
        grid-template-columns: 1fr;
    }
}

.competencies-main[b-pqd0grxfqk] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.comp-list-header[b-pqd0grxfqk] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 16px;
}

.comp-list-header h4[b-pqd0grxfqk] {
    margin: 0 0 4px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.comp-description[b-pqd0grxfqk] {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* Empty State */
.empty-state[b-pqd0grxfqk] {
    text-align: center;
    padding: 48px 24px;
}

.empty-icon[b-pqd0grxfqk] {
    font-size: 3rem;
    margin-bottom: 16px;
}

.empty-state h5[b-pqd0grxfqk] {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: #1e293b;
}

.empty-state p[b-pqd0grxfqk] {
    margin: 0 0 24px;
    color: #64748b;
    font-size: 0.9rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Competency List */
.comp-list[b-pqd0grxfqk] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.comp-card[b-pqd0grxfqk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.2s;
}

.comp-card:hover[b-pqd0grxfqk] {
    border-color: #cbd5e1;
    background: #fafbfc;
}

.comp-card-left[b-pqd0grxfqk] {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.comp-color-indicator[b-pqd0grxfqk] {
    width: 6px;
    height: 40px;
    border-radius: 3px;
    flex-shrink: 0;
}

.comp-info[b-pqd0grxfqk] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.comp-name[b-pqd0grxfqk] {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
}

.comp-desc[b-pqd0grxfqk] {
    font-size: 0.8rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.comp-card-actions[b-pqd0grxfqk] {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

/* Color Picker */
.color-picker-grid[b-pqd0grxfqk] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 4px;
}

.color-option[b-pqd0grxfqk] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border: 3px solid transparent;
}

.color-option:hover[b-pqd0grxfqk] {
    transform: scale(1.1);
}

.color-option.selected[b-pqd0grxfqk] {
    border-color: #1e293b;
    transform: scale(1.15);
}

.color-option i[b-pqd0grxfqk] {
    color: white;
    font-size: 0.85rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Preview Panel */
.comp-preview-panel[b-pqd0grxfqk] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    position: sticky;
    top: 20px;
}

.comp-preview-panel h5[b-pqd0grxfqk] {
    margin: 0 0 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.color-preview[b-pqd0grxfqk] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preview-item[b-pqd0grxfqk] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #475569;
}

.preview-dot[b-pqd0grxfqk] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========================================
   MOBILE BREAKPOINT (max-width: 800px)
   ======================================== */
@media (max-width: 800px) {
    .competencies-main[b-pqd0grxfqk] {
        padding: 16px;
    }

    .comp-list-header[b-pqd0grxfqk] {
        flex-direction: column;
        gap: 8px;
    }

    .comp-card[b-pqd0grxfqk] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 14px 16px;
    }

    .comp-card-left[b-pqd0grxfqk] {
        width: 100%;
    }

    .comp-card-actions[b-pqd0grxfqk] {
        width: 100%;
        flex-direction: row;
    }

    .comp-card-actions .e-btn[b-pqd0grxfqk],
    .comp-card-actions .e-small[b-pqd0grxfqk] {
        flex: 1;
    }

    .comp-preview-panel[b-pqd0grxfqk] {
        position: static;
        margin-top: 16px;
    }

    .color-option[b-pqd0grxfqk] {
        width: 36px;
        height: 36px;
    }

    .color-picker-grid[b-pqd0grxfqk] {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ========================================
   SMALL MOBILE BREAKPOINT (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    .empty-state[b-pqd0grxfqk] {
        padding: 32px 16px;
    }

    .empty-icon[b-pqd0grxfqk] {
        font-size: 2.5rem;
    }

    .comp-card-actions[b-pqd0grxfqk] {
        flex-direction: column;
    }

    .comp-card-actions .e-btn[b-pqd0grxfqk],
    .comp-card-actions .e-small[b-pqd0grxfqk] {
        width: 100%;
    }

    .comp-preview-panel[b-pqd0grxfqk] {
        padding: 16px;
    }

    .color-option[b-pqd0grxfqk] {
        width: 32px;
        height: 32px;
    }
}
/* /Components/Pages/Courses/CompetencyOverview.razor.rz.scp.css */
.empty-card[b-ms4ab1yo97] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 48px 24px;
    text-align: center;
}

.empty-card .empty-icon[b-ms4ab1yo97] {
    font-size: 3rem;
    margin-bottom: 16px;
}

.empty-card h5[b-ms4ab1yo97] {
    margin: 0 0 8px;
    color: #1e293b;
}

.empty-card p[b-ms4ab1yo97] {
    margin: 0 0 24px;
    color: #64748b;
    font-size: 0.9rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

/* Legend */
.legend-bar[b-ms4ab1yo97] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.legend-title[b-ms4ab1yo97] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

.legend-item[b-ms4ab1yo97] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #475569;
}

.legend-dot[b-ms4ab1yo97] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Matrix Table */
.matrix-container[b-ms4ab1yo97] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow-x: auto;
}

.matrix-table[b-ms4ab1yo97] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.matrix-table th[b-ms4ab1yo97] {
    padding: 14px 16px;
    text-align: center;
    font-weight: 600;
    color: #475569;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #fafbfc;
    border-bottom: 2px solid #e2e8f0;
}

.matrix-table th.student-col[b-ms4ab1yo97] {
    text-align: left;
    min-width: 200px;
}

.matrix-table th.comp-col[b-ms4ab1yo97] {
    min-width: 140px;
}

.matrix-table th.avg-col[b-ms4ab1yo97] {
    min-width: 100px;
    background: #f1f5f9;
}

.comp-col-header[b-ms4ab1yo97] {
    border-bottom: 3px solid;
    padding-bottom: 4px;
    display: inline-block;
}

.matrix-table td[b-ms4ab1yo97] {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
}

.matrix-table tbody tr:hover[b-ms4ab1yo97] {
    background: #fafbfc;
}

.student-cell[b-ms4ab1yo97] {
    font-weight: 500;
    color: #1e293b;
}

.student-name-text[b-ms4ab1yo97] {
    white-space: nowrap;
}

.score-cell[b-ms4ab1yo97] {
    text-align: center;
}

.score-display[b-ms4ab1yo97] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.score-bar-bg[b-ms4ab1yo97] {
    width: 80px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.score-bar-fill[b-ms4ab1yo97] {
    height: 100%;
    border-radius: 3px;
    transition: width 0.6s ease;
}

.score-value[b-ms4ab1yo97] {
    font-weight: 600;
    font-size: 0.85rem;
}

.no-data[b-ms4ab1yo97] {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.avg-cell[b-ms4ab1yo97] {
    text-align: center;
    background: #fafbfc;
}

.overall-badge[b-ms4ab1yo97] {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
}

.overall-badge.excellent[b-ms4ab1yo97] {
    background: #dcfce7;
    color: #15803d;
}

.overall-badge.good[b-ms4ab1yo97] {
    background: #dbeafe;
    color: #1d4ed8;
}

.overall-badge.fair[b-ms4ab1yo97] {
    background: #fef3c7;
    color: #b45309;
}

.overall-badge.weak[b-ms4ab1yo97] {
    background: #fee2e2;
    color: #dc2626;
}

/* Footer Row */
.avg-row td[b-ms4ab1yo97] {
    border-top: 2px solid #e2e8f0;
    background: #f8fafc;
    padding: 14px 16px;
}

.class-avg[b-ms4ab1yo97] {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Charts */
.charts-section[b-ms4ab1yo97] {
    margin-top: 32px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.charts-section h4[b-ms4ab1yo97] {
    margin: 0 0 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

/* ========================================
   MOBILE BREAKPOINT (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    .empty-card[b-ms4ab1yo97] {
        padding: 32px 16px;
    }

    .legend-bar[b-ms4ab1yo97] {
        padding: 10px 12px;
        gap: 8px;
    }

    .legend-title[b-ms4ab1yo97] {
        width: 100%;
        margin-bottom: 4px;
    }

    .legend-item[b-ms4ab1yo97] {
        font-size: 0.8rem;
    }

    .matrix-container[b-ms4ab1yo97] {
        border-radius: 8px;
        margin-bottom: 16px;
    }

    .matrix-table th[b-ms4ab1yo97] {
        padding: 10px 8px;
        font-size: 0.7rem;
    }

    .matrix-table td[b-ms4ab1yo97] {
        padding: 8px 6px;
    }

    .matrix-table th.student-col[b-ms4ab1yo97] {
        min-width: 150px;
    }

    .matrix-table th.comp-col[b-ms4ab1yo97] {
        min-width: 100px;
    }

    .score-bar-bg[b-ms4ab1yo97] {
        width: 60px;
    }

    .score-value[b-ms4ab1yo97] {
        font-size: 0.75rem;
    }

    .overall-badge[b-ms4ab1yo97] {
        padding: 3px 8px;
        font-size: 0.75rem;
    }

    .charts-section[b-ms4ab1yo97] {
        padding: 16px;
        margin-top: 24px;
        border-radius: 8px;
    }

    .avg-row td[b-ms4ab1yo97] {
        padding: 10px 8px;
    }
}

/* ========================================
   SMALL MOBILE BREAKPOINT (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    .matrix-table th.student-col[b-ms4ab1yo97] {
        min-width: 120px;
    }

    .matrix-table th.comp-col[b-ms4ab1yo97] {
        min-width: 80px;
    }

    .score-bar-bg[b-ms4ab1yo97] {
        width: 50px;
    }

    .student-cell[b-ms4ab1yo97] {
        font-size: 0.85rem;
    }

    .class-avg[b-ms4ab1yo97] {
        font-size: 0.8rem;
    }
}
/* /Components/Pages/Courses/Logbook.razor.rz.scp.css */
.filter-bar[b-vqnwusmmxm] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-badge[b-vqnwusmmxm] {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.category-badge.behavior[b-vqnwusmmxm] {
    background: #fef3c7;
    color: #92400e;
}

.category-badge.forgottenmaterial[b-vqnwusmmxm] {
    background: #fee2e2;
    color: #991b1b;
}

.category-badge.social[b-vqnwusmmxm] {
    background: #e0f2fe;
    color: #0369a1;
}

.category-badge.other[b-vqnwusmmxm] {
    background: #f1f5f9;
    color: #475569;
}

.severity-badge[b-vqnwusmmxm] {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.severity-badge.info[b-vqnwusmmxm] {
    background: #e0f2fe;
    color: #0369a1;
}

.severity-badge.warning[b-vqnwusmmxm] {
    background: #fef3c7;
    color: #92400e;
}

.severity-badge.critical[b-vqnwusmmxm] {
    background: #fee2e2;
    color: #991b1b;
}
/* /Components/Pages/Courses/SeatMapEditor.razor.rz.scp.css */
.seatmap-container[b-knrll98c59] {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.classroom[b-knrll98c59] {
    flex: 1;
}

.teacher-desk[b-knrll98c59] {
    background: #334155;
    color: white;
    text-align: center;
    padding: 0.5rem;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.seat-grid[b-knrll98c59] {
    display: grid;
    gap: 8px;
    padding: 1rem;
    background: #f1f5f9;
    border-radius: 0 0 8px 8px;
    border: 1px solid #e2e8f0;
}

.seat[b-knrll98c59] {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.seat.occupied[b-knrll98c59] {
    background: #eff6ff;
    border-color: #93c5fd;
}

.seat.occupied:hover[b-knrll98c59] {
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.seat.empty[b-knrll98c59] {
    background: #fafafa;
    border-style: dashed;
}

.seat.empty:hover[b-knrll98c59] {
    border-color: #94a3b8;
    background: #f8fafc;
}

.seat.drag-over[b-knrll98c59] {
    background: #dbeafe;
    border-color: #3b82f6;
    border-style: solid;
    transform: scale(1.02);
}

.seat-student[b-knrll98c59] {
    font-size: 0.8rem;
    font-weight: 500;
    color: #1e293b;
    word-break: break-word;
}

.seat-empty-label[b-knrll98c59] {
    font-size: 0.7rem;
    color: #cbd5e1;
}

.student-pool-panel[b-knrll98c59] {
    width: 200px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    max-height: 500px;
    overflow-y: auto;
}

.student-pool-panel h5[b-knrll98c59] {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.pool-student[b-knrll98c59] {
    padding: 0.5rem 0.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    margin-bottom: 0.375rem;
    font-size: 0.8rem;
    cursor: grab;
    transition: all 0.15s ease;
}

.pool-student:hover[b-knrll98c59] {
    background: #eff6ff;
    border-color: #93c5fd;
}

.pool-student:active[b-knrll98c59] {
    cursor: grabbing;
}

.empty-state[b-knrll98c59] {
    text-align: center;
    padding: 3rem;
    color: #94a3b8;
}
/* /Components/Pages/Courses/StudentCourseDetail.razor.rz.scp.css */
/* Student Info Card */
.student-info-card[b-eewmac2uny] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.student-info-row[b-eewmac2uny] {
    display: flex;
    align-items: center;
    gap: 20px;
}

.student-photo[b-eewmac2uny] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.student-photo-placeholder[b-eewmac2uny] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.student-info-details[b-eewmac2uny] {
    flex: 1;
    min-width: 0;
}

.student-info-name[b-eewmac2uny] {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
}

.student-info-meta[b-eewmac2uny] {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 2px;
}

.student-overall[b-eewmac2uny] {
    text-align: center;
    padding: 12px 20px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.overall-label[b-eewmac2uny] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.overall-value[b-eewmac2uny] {
    font-size: 1.5rem;
    font-weight: 700;
}

.overall-grade[b-eewmac2uny] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    margin-top: 2px;
}

/* Color classes */
.excellent[b-eewmac2uny] { color: #15803d; }
.good[b-eewmac2uny] { color: #1d4ed8; }
.fair[b-eewmac2uny] { color: #b45309; }
.weak[b-eewmac2uny] { color: #dc2626; }

/* Section */
.section[b-eewmac2uny] {
    margin-bottom: 32px;
}

.section-title[b-eewmac2uny] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.empty-hint[b-eewmac2uny] {
    color: #94a3b8;
    font-size: 0.9rem;
    padding: 16px;
    text-align: center;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px dashed #e2e8f0;
}

/* Category Cards */
.category-card[b-eewmac2uny] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.category-header[b-eewmac2uny] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.category-name[b-eewmac2uny] {
    font-weight: 600;
    font-size: 0.9rem;
    color: #334155;
}

.category-avg[b-eewmac2uny] {
    font-weight: 700;
    font-size: 0.9rem;
    padding: 2px 10px;
    border-radius: 6px;
    background: #f1f5f9;
}

.category-avg.excellent[b-eewmac2uny] { background: #dcfce7; }
.category-avg.good[b-eewmac2uny] { background: #dbeafe; }
.category-avg.fair[b-eewmac2uny] { background: #fef3c7; }
.category-avg.weak[b-eewmac2uny] { background: #fee2e2; }

.category-avg-group[b-eewmac2uny] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-grade-name[b-eewmac2uny] {
    font-weight: 600;
    font-size: 0.85rem;
    color: #475569;
}

/* Grade Rows */
.grade-list[b-eewmac2uny] {
    padding: 0;
}

.grade-row[b-eewmac2uny] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid #f1f5f9;
    gap: 12px;
}

.grade-row:last-child[b-eewmac2uny] {
    border-bottom: none;
}

.grade-row:hover[b-eewmac2uny] {
    background: #fafbfc;
}

.grade-info[b-eewmac2uny] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.grade-title[b-eewmac2uny] {
    font-weight: 500;
    font-size: 0.875rem;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.grade-date[b-eewmac2uny] {
    font-size: 0.8rem;
    color: #94a3b8;
    white-space: nowrap;
}

.assignment-type-badge[b-eewmac2uny] {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.type-exam[b-eewmac2uny] {
    background: #fef3c7;
    color: #92400e;
}

.type-test[b-eewmac2uny] {
    background: #e0f2fe;
    color: #0369a1;
}

.type-oral[b-eewmac2uny] {
    background: #f3e8ff;
    color: #7c3aed;
}

.type-standard[b-eewmac2uny] {
    background: #f1f5f9;
    color: #64748b;
}

.grade-result[b-eewmac2uny] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.grade-points[b-eewmac2uny] {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.grade-percent[b-eewmac2uny] {
    font-weight: 700;
    font-size: 0.9rem;
}

.grade-name-badge[b-eewmac2uny] {
    font-weight: 600;
    font-size: 0.8rem;
    color: #475569;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 4px;
}

.grade-missing[b-eewmac2uny] {
    font-size: 0.85rem;
    color: #cbd5e1;
    font-style: italic;
}

/* Competency Grid */
.competency-grid[b-eewmac2uny] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 16px;
}

.competency-card[b-eewmac2uny] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 20px;
}

.comp-card-header[b-eewmac2uny] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.comp-dot[b-eewmac2uny] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.comp-name[b-eewmac2uny] {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
}

.comp-description[b-eewmac2uny] {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 12px;
}

.comp-score-section[b-eewmac2uny] {
    margin-top: 10px;
}

.comp-bar-bg[b-eewmac2uny] {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 6px;
}

.comp-bar-fill[b-eewmac2uny] {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease;
}

.comp-score-row[b-eewmac2uny] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comp-score-value[b-eewmac2uny] {
    font-weight: 700;
    font-size: 1.1rem;
}

.comp-grade-name[b-eewmac2uny] {
    font-weight: 600;
    font-size: 0.85rem;
}

.comp-score-count[b-eewmac2uny] {
    font-size: 0.8rem;
    color: #94a3b8;
}

.comp-no-data[b-eewmac2uny] {
    color: #cbd5e1;
    font-size: 0.85rem;
    margin-top: 10px;
    font-style: italic;
}

/* Competency detail breakdown */
.comp-details[b-eewmac2uny] {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

.comp-detail-row[b-eewmac2uny] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 0.8rem;
    gap: 8px;
}

.comp-detail-assignment[b-eewmac2uny] {
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.comp-detail-score[b-eewmac2uny] {
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Chart */
.chart-card[b-eewmac2uny] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.chart-title[b-eewmac2uny] {
    margin: 0 0 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

/* ========================================
   MOBILE BREAKPOINT (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    .student-info-card[b-eewmac2uny] {
        padding: 16px;
        margin-bottom: 16px;
    }

    .student-info-row[b-eewmac2uny] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .student-photo[b-eewmac2uny],
    .student-photo-placeholder[b-eewmac2uny] {
        width: 56px;
        height: 56px;
    }

    .student-overall[b-eewmac2uny] {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }

    .section[b-eewmac2uny] {
        margin-bottom: 24px;
    }

    .section-title[b-eewmac2uny] {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .category-card[b-eewmac2uny] {
        margin-bottom: 10px;
        border-radius: 8px;
    }

    .category-header[b-eewmac2uny] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px;
    }

    .category-avg-group[b-eewmac2uny] {
        flex-wrap: wrap;
    }

    .grade-row[b-eewmac2uny] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px;
    }

    .grade-info[b-eewmac2uny] {
        flex-wrap: wrap;
        gap: 6px;
    }

    .grade-result[b-eewmac2uny] {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 6px;
    }

    .competency-grid[b-eewmac2uny] {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .competency-card[b-eewmac2uny] {
        padding: 14px 16px;
    }

    .comp-score-row[b-eewmac2uny] {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .comp-detail-assignment[b-eewmac2uny] {
        max-width: 180px;
    }

    .chart-card[b-eewmac2uny] {
        padding: 16px;
        margin-top: 16px;
    }

    .empty-hint[b-eewmac2uny] {
        padding: 12px;
        font-size: 0.85rem;
    }
}

/* ========================================
   SMALL MOBILE BREAKPOINT (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    .student-info-card[b-eewmac2uny] {
        padding: 12px;
    }

    .student-info-name[b-eewmac2uny] {
        font-size: 1rem;
    }

    .overall-value[b-eewmac2uny] {
        font-size: 1.25rem;
    }

    .category-name[b-eewmac2uny] {
        font-size: 0.85rem;
    }

    .grade-title[b-eewmac2uny] {
        font-size: 0.8rem;
    }

    .grade-points[b-eewmac2uny] {
        font-size: 0.75rem;
    }

    .grade-percent[b-eewmac2uny] {
        font-size: 0.85rem;
    }

    .comp-score-value[b-eewmac2uny] {
        font-size: 1rem;
    }

    .comp-detail-row[b-eewmac2uny] {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .comp-detail-assignment[b-eewmac2uny] {
        max-width: 100%;
    }
}
/* /Components/Pages/Grading/CategoryTree.razor.rz.scp.css */
.category-tree[b-6whcmenbkg] {
    margin-top: 0.5rem;
}

.category-node[b-6whcmenbkg] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.category-header[b-6whcmenbkg] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.category-name[b-6whcmenbkg] {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.category-meta[b-6whcmenbkg] {
    color: #64748b;
    font-size: 0.8rem;
    flex: 1;
}

.category-actions[b-6whcmenbkg] {
    display: flex;
    gap: 0.375rem;
}

.assignments-list[b-6whcmenbkg] {
    padding: 0.5rem 1rem;
}

.assignment-row[b-6whcmenbkg] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.875rem;
}

.assignment-row:last-child[b-6whcmenbkg] {
    border-bottom: none;
}

.assignment-name[b-6whcmenbkg] {
    flex: 1;
    font-weight: 500;
    color: #1e293b;
}

.assignment-type[b-6whcmenbkg] {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.assignment-max[b-6whcmenbkg] {
    color: #64748b;
    font-size: 0.8rem;
}

.assignment-due[b-6whcmenbkg] {
    color: #f59e0b;
    font-size: 0.8rem;
}

.subcategories[b-6whcmenbkg] {
    padding: 0.5rem 1rem 0.5rem 1.5rem;
}

.form-group[b-6whcmenbkg] {
    margin-bottom: 1rem;
}

.form-group label[b-6whcmenbkg] {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

/* ========================================
   MOBILE BREAKPOINT (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    .category-header[b-6whcmenbkg] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .category-name[b-6whcmenbkg] {
        font-size: 0.9rem;
    }

    .category-meta[b-6whcmenbkg] {
        font-size: 0.75rem;
    }

    .category-actions[b-6whcmenbkg] {
        width: 100%;
        flex-wrap: wrap;
        gap: 0.375rem;
    }

    .category-actions .e-btn[b-6whcmenbkg],
    .category-actions .e-small[b-6whcmenbkg] {
        flex: 1;
        min-width: 44px;
        min-height: 36px;
        font-size: 0.75rem;
    }

    .assignment-row[b-6whcmenbkg] {
        flex-wrap: wrap;
        padding: 0.75rem 0;
    }

    .assignment-name[b-6whcmenbkg] {
        width: 100%;
        font-size: 0.85rem;
    }

    .assignment-type[b-6whcmenbkg],
    .assignment-max[b-6whcmenbkg],
    .assignment-due[b-6whcmenbkg] {
        font-size: 0.7rem;
    }

    .subcategories[b-6whcmenbkg] {
        padding-left: 1rem;
        padding-right: 0.75rem;
    }
}

/* ========================================
   SMALL MOBILE BREAKPOINT (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    .category-node[b-6whcmenbkg] {
        margin-bottom: 0.5rem;
        border-radius: 6px;
    }

    .category-header[b-6whcmenbkg] {
        padding: 0.625rem;
    }

    .category-actions .e-btn[b-6whcmenbkg],
    .category-actions .e-small[b-6whcmenbkg] {
        width: 100%;
        flex: none;
    }

    .assignments-list[b-6whcmenbkg] {
        padding: 0.25rem 0.5rem;
    }

    .assignment-row[b-6whcmenbkg] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.375rem;
    }

    .assignment-row > *[b-6whcmenbkg] {
        margin-bottom: 0.25rem;
    }
}
/* /Components/Pages/Grading/Editors/EnglishExamEditor.razor.rz.scp.css */
.editor-layout[b-571jx33681] {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    align-items: start;
}

@media (max-width: 900px) {
    .editor-layout[b-571jx33681] {
        grid-template-columns: 1fr;
    }
}

.panel-card[b-571jx33681] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.panel-card h4[b-571jx33681] {
    margin: 0 0 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.panel-header[b-571jx33681] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.panel-header h4[b-571jx33681] {
    margin: 0;
}

.summary-stats[b-571jx33681] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.stat-item[b-571jx33681] {
    text-align: center;
    padding: 12px 8px;
    background: #f8fafc;
    border-radius: 8px;
}

.stat-label[b-571jx33681] {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value[b-571jx33681] {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

/* Cut-Score Thresholds Panel */
.thresholds-list[b-571jx33681] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.threshold-row[b-571jx33681] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 8px;
}

.threshold-info[b-571jx33681] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.threshold-name[b-571jx33681] {
    font-weight: 600;
    font-size: 0.9rem;
    color: #92400e;
}

.threshold-sections-count[b-571jx33681] {
    font-size: 0.75rem;
    color: #a16207;
}

.threshold-input[b-571jx33681] {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    width: 90px;
}

.threshold-unit[b-571jx33681] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #92400e;
}

/* Sections List */
.sections-list[b-571jx33681] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-card[b-571jx33681] {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.section-card:hover[b-571jx33681] {
    border-color: #cbd5e1;
}

.section-card.expanded[b-571jx33681] {
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px #3b82f640;
}

.section-header[b-571jx33681] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    cursor: pointer;
    background: #fafbfc;
    transition: background 0.15s;
}

.section-header:hover[b-571jx33681] {
    background: #f1f5f9;
}

.section-header-left[b-571jx33681] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.section-number[b-571jx33681] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #6366f1;
    color: white;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

.section-name[b-571jx33681] {
    font-weight: 500;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cutscore-badge[b-571jx33681] {
    background: #fef3c7;
    color: #92400e;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid #fde68a;
}

.section-header-right[b-571jx33681] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.section-points-badge[b-571jx33681] {
    background: #eff6ff;
    color: #1e3a8a;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.section-exercise-count[b-571jx33681] {
    font-size: 0.8rem;
    color: #64748b;
}

.expand-icon[b-571jx33681] {
    color: #94a3b8;
    font-size: 0.75rem;
    transition: transform 0.2s;
}

/* Section Body */
.section-body[b-571jx33681] {
    padding: 20px;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.section-form-row[b-571jx33681] {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    align-items: flex-end;
}

.section-form-field[b-571jx33681] {
    display: flex;
    flex-direction: column;
}

.section-form-field label[b-571jx33681] {
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 4px;
}

.flex-grow[b-571jx33681] {
    flex: 1;
}

/* Competency Section */
.competency-section[b-571jx33681] {
    margin-bottom: 20px;
}

.competency-section label[b-571jx33681] {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 8px;
}

.competency-section .e-multiselect[b-571jx33681] {
    width: 100%;
}

.competency-badges-inline[b-571jx33681] {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.comp-badge-small[b-571jx33681] {
    font-size: 0.7rem;
    padding: 1px 8px;
    border-radius: 10px;
    border: 1px solid;
    font-weight: 500;
    white-space: nowrap;
}

.no-competencies-hint[b-571jx33681] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fefce8;
    border: 1px solid #fde68a;
    border-radius: 8px;
    color: #92400e;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.no-competencies-hint a[b-571jx33681] {
    color: #d97706;
    text-decoration: underline;
}

/* Exercise Competency UI */
.exercise-row-block[b-571jx33681] {
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    padding: 6px 8px;
    transition: border-color 0.15s;
}

.exercise-row-block:hover[b-571jx33681] {
    border-color: #e2e8f0;
}

.exercise-competency-panel[b-571jx33681] {
    padding: 8px 8px 8px 32px;
    margin-top: 4px;
    border-top: 1px dashed #e2e8f0;
}

.exercise-competency-panel label[b-571jx33681] {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 6px;
}

.exercise-competency-panel .e-multiselect[b-571jx33681] {
    width: 100%;
}

.exercise-competency-badges[b-571jx33681] {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    padding: 4px 0 2px 32px;
}

.competency-hint[b-571jx33681] {
    display: block;
    font-size: 0.72rem;
    color: #94a3b8;
    margin-top: 4px;
    font-style: italic;
}

[b-571jx33681] .comp-active {
    color: #6366f1 !important;
    border-color: #6366f1 !important;
    background: #eef2ff !important;
}

/* Exercises */
.exercises-header[b-571jx33681] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.exercises-header h5[b-571jx33681] {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}

.exercises-list[b-571jx33681] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.exercise-row[b-571jx33681] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
}

.exercise-number[b-571jx33681] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    width: 24px;
    flex-shrink: 0;
}

.exercise-name-field[b-571jx33681] {
    flex: 1;
    min-width: 0;
}

.exercise-points-field[b-571jx33681] {
    width: 100px;
    flex-shrink: 0;
}

.section-actions[b-571jx33681] {
    display: flex;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

/* Save Bar */
.save-bar-sticky[b-571jx33681] {
    position: sticky;
    bottom: 0;
    margin-top: 24px;
    padding: 16px 24px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.save-confirmation[b-571jx33681] {
    color: #16a34a;
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeIn-b-571jx33681 0.3s ease;
}

@keyframes fadeIn-b-571jx33681 {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 480px) {
    .summary-stats[b-571jx33681] {
        grid-template-columns: 1fr;
    }

    .section-form-row[b-571jx33681] {
        flex-direction: column;
    }

    .exercise-row[b-571jx33681] {
        flex-wrap: wrap;
    }

    .save-bar-sticky[b-571jx33681] {
        padding: 12px 16px;
        flex-direction: column;
    }

    .threshold-row[b-571jx33681] {
        flex-direction: column;
        align-items: stretch;
    }

    .threshold-input[b-571jx33681] {
        width: 100%;
    }
}
/* /Components/Pages/Grading/Editors/EnglishExamGrading.razor.rz.scp.css */
.exam-grading-container[b-hkod4eyoqf] {
    display: flex;
    gap: 20px;
    height: 650px;
    margin-bottom: 20px;
}

.student-list[b-hkod4eyoqf] {
    width: 300px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
}

.student-list-header[b-hkod4eyoqf] {
    padding: 15px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 600;
}

.student-list-items[b-hkod4eyoqf] {
    flex: 1;
    overflow-y: auto;
}

.student-item[b-hkod4eyoqf] {
    padding: 12px 15px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: background 0.2s;
}

.student-item:hover[b-hkod4eyoqf] {
    background: #f8fafc;
}

.student-item.active[b-hkod4eyoqf] {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
}

.student-item.cutscore-capped[b-hkod4eyoqf] {
    border-left: 4px solid #f59e0b;
}

.student-item.cutscore-capped.active[b-hkod4eyoqf] {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
}

.student-name[b-hkod4eyoqf] {
    font-weight: 500;
    color: #1e293b;
}

.student-progress[b-hkod4eyoqf] {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grade-badge-small[b-hkod4eyoqf] {
    background: #e2e8f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.grade-badge-small.grade-danger[b-hkod4eyoqf] {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.cutscore-warning-badge[b-hkod4eyoqf] {
    color: #f59e0b;
    font-size: 0.85rem;
}

.student-detail[b-hkod4eyoqf] {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.detail-header[b-hkod4eyoqf] {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-header h3[b-hkod4eyoqf] {
    margin: 0;
    font-size: 1.2rem;
    color: #0f172a;
}

.detail-stats[b-hkod4eyoqf] {
    display: flex;
    gap: 15px;
    align-items: center;
}

.detail-stat-item[b-hkod4eyoqf] {
    font-size: 0.9rem;
    color: #475569;
}

.detail-stat-value[b-hkod4eyoqf] {
    font-weight: 600;
    color: #1e293b;
}

.text-warning[b-hkod4eyoqf] {
    color: #f59e0b !important;
}

.text-danger[b-hkod4eyoqf] {
    color: #dc2626 !important;
}

.cutscore-warning-bar[b-hkod4eyoqf] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    color: #92400e;
    font-size: 0.85rem;
    font-weight: 500;
    flex-wrap: wrap;
}

.cutscore-warning-bar i[b-hkod4eyoqf] {
    color: #f59e0b;
}

.cutscore-failed-section[b-hkod4eyoqf] {
    background: #fef3c7;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #fde68a;
}

.cutscore-grade-result[b-hkod4eyoqf] {
    background: #fee2e2;
    color: #991b1b;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid #fca5a5;
}

.detail-body[b-hkod4eyoqf] {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Section-grouped grading */
.grading-section[b-hkod4eyoqf] {
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.grading-section.section-failing[b-hkod4eyoqf] {
    border-color: #fde68a;
    background: #fffbeb;
}

.grading-section-header[b-hkod4eyoqf] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 600;
    color: #1e293b;
}

.section-failing .grading-section-header[b-hkod4eyoqf] {
    background: #fef3c7;
}

.grading-section-name[b-hkod4eyoqf] {
    font-size: 0.95rem;
}

.cutscore-indicator[b-hkod4eyoqf] {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.cutscore-indicator.passing[b-hkod4eyoqf] {
    background: #dcfce7;
    color: #166534;
    border-color: #bbf7d0;
}

.cutscore-indicator.failing[b-hkod4eyoqf] {
    background: #fef3c7;
    color: #92400e;
    border-color: #fde68a;
}

.grading-section-result[b-hkod4eyoqf] {
    margin-left: auto;
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
}

.grading-exercises[b-hkod4eyoqf] {
    padding: 8px 16px;
}

.exercise-input-row[b-hkod4eyoqf] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.exercise-input-row:last-child[b-hkod4eyoqf] {
    border-bottom: none;
}

.exercise-label[b-hkod4eyoqf] {
    font-weight: 500;
    color: #1e293b;
    min-width: 120px;
}

.exercise-max[b-hkod4eyoqf] {
    font-size: 0.8rem;
    color: #64748b;
    min-width: 80px;
}

.exercise-input[b-hkod4eyoqf] {
    width: 120px;
    margin-left: auto;
}

.comment-section[b-hkod4eyoqf] {
    margin-top: 25px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.detail-footer[b-hkod4eyoqf] {
    padding: 15px 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    background: #f8fafc;
}

.save-bar[b-hkod4eyoqf] {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.save-confirmation[b-hkod4eyoqf] {
    color: #16a34a;
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeIn-b-hkod4eyoqf 0.3s ease;
}

@keyframes fadeIn-b-hkod4eyoqf {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.stats-row[b-hkod4eyoqf] {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 30px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
}

/* Mobile */
@media (max-width: 768px) {
    .exam-grading-container[b-hkod4eyoqf] {
        flex-direction: column;
        height: auto;
    }

    .student-list[b-hkod4eyoqf] {
        width: 100%;
        max-height: 250px;
    }

    .detail-stats[b-hkod4eyoqf] {
        flex-wrap: wrap;
    }

    .exercise-input-row[b-hkod4eyoqf] {
        flex-wrap: wrap;
    }

    .stats-row[b-hkod4eyoqf] {
        flex-direction: column;
        gap: 8px;
    }
}
/* /Components/Pages/Grading/Editors/ExamEditor.razor.rz.scp.css */
/* ExamEditor is a thin dispatcher page — styles are in type-specific editor components */
/* /Components/Pages/Grading/Editors/MathExamCreator.razor.rz.scp.css */
.mathexam-creator-form .form-group[b-9qaheuve7i] {
    margin-bottom: 1rem;
}

.mathexam-creator-form label[b-9qaheuve7i] {
    font-weight: 500;
    color: #475569;
    margin-bottom: 4px;
    display: block;
    font-size: 0.9rem;
}

.info-hint[b-9qaheuve7i] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 1rem;
    padding: 12px 16px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    color: #1e40af;
    font-size: 0.85rem;
    line-height: 1.5;
}

.info-hint i[b-9qaheuve7i] {
    margin-top: 2px;
    flex-shrink: 0;
}
/* /Components/Pages/Grading/Editors/MathExamEditor.razor.rz.scp.css */
.editor-layout[b-e81og0qf9o] {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    align-items: start;
}

/* ========================================
   MOBILE BREAKPOINT (max-width: 900px)
   ======================================== */
@media (max-width: 900px) {
    .editor-layout[b-e81og0qf9o] {
        grid-template-columns: 1fr;
    }

    .panel-card[b-e81og0qf9o] {
        padding: 16px;
    }

    .summary-stats[b-e81og0qf9o] {
    grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .example-form-row[b-e81og0qf9o] {
        flex-direction: column;
        gap: 12px;
    }

    .example-form-field[b-e81og0qf9o] {
        width: 100%;
    }

    .points-field[b-e81og0qf9o] {
        width: 100% !important;
    }
}

/* ========================================
   SMALL MOBILE BREAKPOINT (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    .summary-stats[b-e81og0qf9o] {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .stat-item[b-e81og0qf9o] {
        padding: 10px 8px;
    }

    .stat-value[b-e81og0qf9o] {
        font-size: 1.25rem;
    }

    .example-header[b-e81og0qf9o] {
        padding: 12px;
    }

    .example-body[b-e81og0qf9o] {
        padding: 16px;
    }

    .example-actions[b-e81og0qf9o] {
        flex-direction: column;
    }

    .save-bar-sticky[b-e81og0qf9o] {
        padding: 12px 16px;
        flex-direction: column;
    }

    .save-bar-sticky .e-btn[b-e81og0qf9o] {
        width: 100%;
    }

    .save-confirmation[b-e81og0qf9o] {
        text-align: center;
    }
}

.panel-card[b-e81og0qf9o] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.panel-card h4[b-e81og0qf9o] {
    margin: 0 0 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.panel-header[b-e81og0qf9o] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.panel-header h4[b-e81og0qf9o] {
    margin: 0;
}

.summary-stats[b-e81og0qf9o] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.stat-item[b-e81og0qf9o] {
    text-align: center;
    padding: 12px 8px;
    background: #f8fafc;
    border-radius: 8px;
}

.stat-label[b-e81og0qf9o] {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value[b-e81og0qf9o] {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

/* Examples List */
.examples-list[b-e81og0qf9o] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.example-card[b-e81og0qf9o] {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.example-card:hover[b-e81og0qf9o] {
    border-color: #cbd5e1;
}

.example-card.expanded[b-e81og0qf9o] {
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px #3b82f640;
}

.example-header[b-e81og0qf9o] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    cursor: pointer;
    background: #fafbfc;
    transition: background 0.15s;
}

.example-header:hover[b-e81og0qf9o] {
    background: #f1f5f9;
}

.example-header-left[b-e81og0qf9o] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.example-number[b-e81og0qf9o] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #3b82f6;
    color: white;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

.example-name[b-e81og0qf9o] {
    font-weight: 500;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.example-header-right[b-e81og0qf9o] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.example-points-badge[b-e81og0qf9o] {
    background: #eff6ff;
    color: #1e3a8a;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.expand-icon[b-e81og0qf9o] {
    color: #94a3b8;
    font-size: 0.75rem;
    transition: transform 0.2s;
}

/* Expanded Body */
.example-body[b-e81og0qf9o] {
    padding: 20px;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.example-form-row[b-e81og0qf9o] {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.example-form-field[b-e81og0qf9o] {
    display: flex;
    flex-direction: column;
}

.example-form-field label[b-e81og0qf9o] {
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 4px;
}

.flex-grow[b-e81og0qf9o] {
    flex: 1;
}

.points-field[b-e81og0qf9o] {
    width: 120px;
    flex-shrink: 0;
}

/* Competency Section */
.competency-section[b-e81og0qf9o] {
    margin-bottom: 20px;
}

.competency-section label[b-e81og0qf9o] {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 8px;
}

.competency-section .e-multiselect[b-e81og0qf9o] {
    width: 100%;
}

.comp-dot[b-e81og0qf9o] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
}

.competency-badges-inline[b-e81og0qf9o] {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.comp-badge-small[b-e81og0qf9o] {
    font-size: 0.7rem;
    padding: 1px 8px;
    border-radius: 10px;
    border: 1px solid;
    font-weight: 500;
    white-space: nowrap;
}

.no-competencies-hint[b-e81og0qf9o] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fefce8;
    border: 1px solid #fde68a;
    border-radius: 8px;
    color: #92400e;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.no-competencies-hint a[b-e81og0qf9o] {
    color: #d97706;
    text-decoration: underline;
}

.example-actions[b-e81og0qf9o] {
    display: flex;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

/* Save Bar */
.save-bar-sticky[b-e81og0qf9o] {
    position: sticky;
    bottom: 0;
    margin-top: 24px;
    padding: 16px 24px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.save-confirmation[b-e81og0qf9o] {
    color: #16a34a;
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeIn-b-e81og0qf9o 0.3s ease;
}

@keyframes fadeIn-b-e81og0qf9o {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}
/* /Components/Pages/Grading/Editors/MathExamGrading.razor.rz.scp.css */
.exam-grading-container[b-ntqrpruz4s] {
    display: flex;
    gap: 20px;
    height: 600px;
    margin-bottom: 20px;
}

.student-list[b-ntqrpruz4s] {
    width: 300px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
}

.student-list-header[b-ntqrpruz4s] {
    padding: 15px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 600;
}

.student-list-items[b-ntqrpruz4s] {
    flex: 1;
    overflow-y: auto;
}

.student-item[b-ntqrpruz4s] {
    padding: 12px 15px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: background 0.2s;
}

.student-item:hover[b-ntqrpruz4s] {
    background: #f8fafc;
}

.student-item.active[b-ntqrpruz4s] {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
}

.student-name[b-ntqrpruz4s] {
    font-weight: 500;
    color: #1e293b;
}

.student-progress[b-ntqrpruz4s] {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    justify-content: space-between;
}

.grade-badge-small[b-ntqrpruz4s] {
    background: #e2e8f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.student-detail[b-ntqrpruz4s] {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.detail-header[b-ntqrpruz4s] {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-header h3[b-ntqrpruz4s] {
    margin: 0;
    font-size: 1.2rem;
    color: #0f172a;
}

.detail-stats[b-ntqrpruz4s] {
    display: flex;
    gap: 15px;
    align-items: center;
}

.detail-stat-item[b-ntqrpruz4s] {
    font-size: 0.9rem;
    color: #475569;
}

.detail-stat-value[b-ntqrpruz4s] {
    font-weight: 600;
    color: #1e293b;
}

.detail-body[b-ntqrpruz4s] {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.task-list[b-ntqrpruz4s] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.task-item[b-ntqrpruz4s] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.task-info[b-ntqrpruz4s] {
    display: flex;
    flex-direction: column;
}

.task-name[b-ntqrpruz4s] {
    font-weight: 600;
    color: #1e293b;
}

.task-max[b-ntqrpruz4s] {
    font-size: 0.8rem;
    color: #64748b;
}

.task-input[b-ntqrpruz4s] {
    width: 120px;
}

.comment-section[b-ntqrpruz4s] {
    margin-top: 25px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.detail-footer[b-ntqrpruz4s] {
    padding: 15px 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    background: #f8fafc;
}

.save-bar[b-ntqrpruz4s] {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stats-row[b-ntqrpruz4s] {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 30px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ===== Hero / Greeting ===== */
.dashboard-hero[b-j32opc92ut] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
}

.hero-text h2[b-j32opc92ut] {
    margin: 0 0 0.25rem 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-date[b-j32opc92ut] {
    margin: 0;
    opacity: 0.85;
    font-size: 0.95rem;
}

.hero-stats[b-j32opc92ut] {
    display: flex;
    gap: 2rem;
}

.hero-stat[b-j32opc92ut] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-stat-value[b-j32opc92ut] {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.hero-stat-label[b-j32opc92ut] {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 0.25rem;
    white-space: nowrap;
}

/* ===== Section Headers ===== */
.dashboard-section[b-j32opc92ut] {
    margin-bottom: 2rem;
}

.section-header[b-j32opc92ut] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.section-header h4[b-j32opc92ut] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.section-link[b-j32opc92ut] {
    font-size: 0.85rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.section-link:hover[b-j32opc92ut] {
    text-decoration: underline;
}

/* ===== Courses Grid ===== */
.courses-grid[b-j32opc92ut] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.course-card[b-j32opc92ut] {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    cursor: pointer;
}

.course-card:hover[b-j32opc92ut] {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.course-card-top[b-j32opc92ut] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.course-subject-badge[b-j32opc92ut] {
    background: #eff6ff;
    color: #1d4ed8;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.course-student-count[b-j32opc92ut] {
    font-size: 0.75rem;
    color: #64748b;
}

.course-card-name[b-j32opc92ut] {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.3;
}

.course-card-bottom[b-j32opc92ut] {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
}

.course-next-lesson[b-j32opc92ut] {
    font-size: 0.78rem;
    color: #3b82f6;
    font-weight: 500;
}

.course-no-lesson[b-j32opc92ut] {
    font-size: 0.78rem;
    color: #94a3b8;
}

/* ===== Two-Column Layout ===== */
.dashboard-two-col[b-j32opc92ut] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .dashboard-two-col[b-j32opc92ut] {
        grid-template-columns: 1fr;
    }

    .dashboard-hero[b-j32opc92ut] {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem;
    }

    .courses-grid[b-j32opc92ut] {
        grid-template-columns: 1fr;
    }

    .lesson-time[b-j32opc92ut] {
        min-width: 80px;
        font-size: 0.8rem;
    }

    .warning-grid[b-j32opc92ut] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .dashboard-hero[b-j32opc92ut] {
        padding: 1.25rem 1rem;
        border-radius: 12px;
        margin-bottom: 1.25rem;
    }

    .hero-text h2[b-j32opc92ut] {
        font-size: 1.15rem;
    }

    .hero-date[b-j32opc92ut] {
        font-size: 0.85rem;
    }

    .hero-stats[b-j32opc92ut] {
        gap: 1.25rem;
    }

    .hero-stat-value[b-j32opc92ut] {
        font-size: 1.35rem;
    }

    .hero-stat-label[b-j32opc92ut] {
        font-size: 0.65rem;
    }

    .dashboard-section[b-j32opc92ut] {
        margin-bottom: 1.25rem;
    }

    .section-header h4[b-j32opc92ut] {
        font-size: 0.95rem;
    }

    .course-card[b-j32opc92ut] {
        padding: 1rem;
        border-radius: 10px;
    }

    .card-body[b-j32opc92ut] {
        padding: 0.75rem;
        max-height: 280px;
    }

    .lesson-item[b-j32opc92ut], .assignment-item[b-j32opc92ut] {
        gap: 0.5rem;
        font-size: 0.8125rem;
    }

    .lesson-time[b-j32opc92ut] {
        min-width: 70px;
        font-size: 0.75rem;
    }

    .warning-item[b-j32opc92ut] {
        padding: 0.375rem 0.5rem;
        font-size: 0.8125rem;
    }
}

/* ===== Cards (shared) ===== */
.dashboard-card[b-j32opc92ut] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.card-header[b-j32opc92ut] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
}

.card-header h5[b-j32opc92ut] {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
}

.card-header.warning[b-j32opc92ut] {
    background: #fef3c7;
}

.card-header.warning h5[b-j32opc92ut] {
    color: #92400e;
}

.card-icon[b-j32opc92ut] {
    font-size: 1.25rem;
}

.card-body[b-j32opc92ut] {
    padding: 1rem 1.25rem;
    max-height: 350px;
    overflow-y: auto;
}

/* Custom scrollbar for card-body */
.card-body[b-j32opc92ut]::-webkit-scrollbar {
    width: 5px;
}
.card-body[b-j32opc92ut]::-webkit-scrollbar-track {
    background: transparent;
}
.card-body[b-j32opc92ut]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

/* ===== Lesson Items ===== */
.lesson-item[b-j32opc92ut], .assignment-item[b-j32opc92ut] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8fafc;
    font-size: 0.875rem;
}

.lesson-item:last-child[b-j32opc92ut], .assignment-item:last-child[b-j32opc92ut] {
    border-bottom: none;
}

.lesson-time[b-j32opc92ut] {
    color: #3b82f6;
    font-weight: 600;
    white-space: nowrap;
    min-width: 100px;
}

.lesson-link[b-j32opc92ut] {
    text-decoration: none;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: background 0.15s ease;
}

.lesson-link:hover[b-j32opc92ut] {
    background: #f0f9ff;
}

.lesson-arrow[b-j32opc92ut] {
    margin-left: auto;
    color: #94a3b8;
    font-size: 0.75rem;
}

.lesson-link:hover .lesson-arrow[b-j32opc92ut] {
    color: #3b82f6;
}

.lesson-name[b-j32opc92ut] {
    font-weight: 500;
    color: #1e293b;
    flex: 1;
}

.lesson-topic[b-j32opc92ut] {
    color: #94a3b8;
    font-size: 0.8rem;
}

/* ===== Assignment Items ===== */
.assignment-title[b-j32opc92ut] {
    font-weight: 500;
    color: #1e293b;
    flex: 1;
}

.assignment-course[b-j32opc92ut] {
    color: #64748b;
    font-size: 0.8rem;
}

.assignment-due[b-j32opc92ut] {
    color: #f59e0b;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* ===== Warning Items ===== */
.warning-card[b-j32opc92ut] {
    border-color: #fde68a;
}

.warning-grid[b-j32opc92ut] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.5rem;
}

.warning-item[b-j32opc92ut] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fffbeb;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

.student-name[b-j32opc92ut] {
    font-weight: 500;
    color: #1e293b;
    flex: 1;
}

.course-name[b-j32opc92ut] {
    color: #64748b;
    font-size: 0.8rem;
}

.warning-percent[b-j32opc92ut] {
    color: #dc2626;
    font-weight: 700;
}
/* /Components/Pages/Landing.razor.rz.scp.css */
.landing[b-u11uh7sjom] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    padding: 2rem 1rem;
}

.landing-hero[b-u11uh7sjom] {
    margin-bottom: 3rem;
}

.landing-hero h1[b-u11uh7sjom] {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.landing-subtitle[b-u11uh7sjom] {
    font-size: 1.25rem;
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 1rem;
}

.landing-description[b-u11uh7sjom] {
    font-size: 1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.landing-btn[b-u11uh7sjom] {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.15s ease;
}

.landing-btn.primary[b-u11uh7sjom] {
    background: #3b82f6;
    color: white;
}

.landing-btn.primary:hover[b-u11uh7sjom] {
    background: #2563eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.landing-btn.secondary[b-u11uh7sjom] {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.landing-btn.secondary:hover[b-u11uh7sjom] {
    background: #eff6ff;
}

.landing-features[b-u11uh7sjom] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    width: 100%;
}

.feature-card[b-u11uh7sjom] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.feature-icon[b-u11uh7sjom] {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.feature-card h4[b-u11uh7sjom] {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: #1e293b;
}

.feature-card p[b-u11uh7sjom] {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* ===== Tablet ===== */
@media (max-width: 768px) {
    .landing[b-u11uh7sjom] {
        padding: 1.5rem 1rem;
        min-height: 60vh;
    }

    .landing-hero[b-u11uh7sjom] {
        margin-bottom: 2rem;
    }

    .landing-hero h1[b-u11uh7sjom] {
        font-size: 1.75rem;
    }

    .landing-subtitle[b-u11uh7sjom] {
        font-size: 1.05rem;
    }

    .landing-description[b-u11uh7sjom] {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .landing-features[b-u11uh7sjom] {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }

    .feature-card[b-u11uh7sjom] {
        padding: 1.25rem;
    }
}

/* ===== Small Mobile ===== */
@media (max-width: 480px) {
    .landing[b-u11uh7sjom] {
        padding: 1rem 0.75rem;
    }

    .landing-hero h1[b-u11uh7sjom] {
        font-size: 1.5rem;
    }

    .landing-subtitle[b-u11uh7sjom] {
        font-size: 0.95rem;
    }

    .landing-description[b-u11uh7sjom] {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .landing-btn[b-u11uh7sjom] {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .landing-features[b-u11uh7sjom] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .feature-card[b-u11uh7sjom] {
        padding: 1rem;
        border-radius: 10px;
    }

    .feature-icon[b-u11uh7sjom] {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .feature-card h4[b-u11uh7sjom] {
        font-size: 0.9rem;
    }

    .feature-card p[b-u11uh7sjom] {
        font-size: 0.8rem;
    }
}
/* /Components/Pages/Lessons/AttendanceListView.razor.rz.scp.css */
.student-link[b-toj7ndhxgk] {
    color: #3b82f6;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
}

.student-link:hover[b-toj7ndhxgk] {
    text-decoration: underline;
}

.note-icon[b-toj7ndhxgk] {
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}

.note-icon:hover[b-toj7ndhxgk] {
    opacity: 1;
}
/* /Components/Pages/Lessons/AttendanceSeatMap.razor.rz.scp.css */
.classroom[b-vxud3o8phq] {
    margin-top: 0.5rem;
}

.teacher-desk[b-vxud3o8phq] {
    background: #334155;
    color: white;
    text-align: center;
    padding: 0.5rem;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.seat-grid[b-vxud3o8phq] {
    display: grid;
    gap: 8px;
    padding: 1rem;
    background: #f1f5f9;
    border-radius: 0 0 8px 8px;
    border: 1px solid #e2e8f0;
}

.seat[b-vxud3o8phq] {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem;
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.seat.occupied:hover[b-vxud3o8phq] {
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.seat.empty[b-vxud3o8phq] {
    background: #fafafa;
    border-style: dashed;
    cursor: default;
}

.seat.status-present[b-vxud3o8phq] {
    background: #f0fdf4;
    border-color: #86efac;
}

.seat.status-absentexcused[b-vxud3o8phq] {
    background: #fefce8;
    border-color: #fde68a;
}

.seat.status-absentunexcused[b-vxud3o8phq] {
    background: #fef2f2;
    border-color: #fca5a5;
}

.seat.status-late[b-vxud3o8phq] {
    background: #fff7ed;
    border-color: #fdba74;
}

.seat-content[b-vxud3o8phq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    width: 100%;
}

.seat-photo[b-vxud3o8phq] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.seat-student[b-vxud3o8phq] {
    font-size: 0.75rem;
    font-weight: 500;
    color: #1e293b;
    word-break: break-word;
    line-height: 1.2;
}

.seat-empty-label[b-vxud3o8phq] {
    font-size: 0.7rem;
    color: #cbd5e1;
}

.seat-status-row[b-vxud3o8phq] {
    display: flex;
    gap: 4px;
    margin-top: 2px;
}

.status-dot[b-vxud3o8phq] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.1s ease;
}

.status-dot:hover[b-vxud3o8phq] {
    transform: scale(1.3);
}

.dot-present[b-vxud3o8phq] { background: #bbf7d0; border-color: #86efac; }
.dot-present.active[b-vxud3o8phq] { background: #22c55e; border-color: #16a34a; }

.dot-absentexcused[b-vxud3o8phq] { background: #fef08a; border-color: #fde68a; }
.dot-absentexcused.active[b-vxud3o8phq] { background: #eab308; border-color: #ca8a04; }

.dot-absentunexcused[b-vxud3o8phq] { background: #fecaca; border-color: #fca5a5; }
.dot-absentunexcused.active[b-vxud3o8phq] { background: #ef4444; border-color: #dc2626; }

.dot-late[b-vxud3o8phq] { background: #fed7aa; border-color: #fdba74; }
.dot-late.active[b-vxud3o8phq] { background: #f97316; border-color: #ea580c; }

/* ===== Mobile: horizontal scroll + smaller seats ===== */
@media (max-width: 768px) {
    .classroom[b-vxud3o8phq] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .seat-grid[b-vxud3o8phq] {
        min-width: 400px;
        gap: 6px;
        padding: 0.75rem;
    }

    .seat[b-vxud3o8phq] {
        min-height: 65px;
        padding: 0.375rem;
    }

    .seat-photo[b-vxud3o8phq] {
        width: 26px;
        height: 26px;
    }

    .seat-student[b-vxud3o8phq] {
        font-size: 0.65rem;
    }

    .seat-empty-label[b-vxud3o8phq] {
        font-size: 0.6rem;
    }

    .status-dot[b-vxud3o8phq] {
        width: 14px;
        height: 14px;
    }

    .teacher-desk[b-vxud3o8phq] {
        font-size: 0.75rem;
        padding: 0.375rem;
    }
}

@media (max-width: 480px) {
    .seat-grid[b-vxud3o8phq] {
        min-width: 320px;
        gap: 4px;
        padding: 0.5rem;
    }

    .seat[b-vxud3o8phq] {
        min-height: 55px;
        padding: 0.25rem;
    }

    .seat-photo[b-vxud3o8phq] {
        width: 22px;
        height: 22px;
    }

    .seat-student[b-vxud3o8phq] {
        font-size: 0.6rem;
    }

    .status-dot[b-vxud3o8phq] {
        width: 16px;
        height: 16px;
    }
}
/* /Components/Pages/Lessons/LessonDetail.razor.rz.scp.css */
/* View toggle */
.view-toggle[b-jym4r4yjcw] {
    display: flex;
    gap: 0.375rem;
    margin-bottom: 1rem;
}
/* /Components/Pages/Students/StudentList.razor.rz.scp.css */
.student-avatar[b-qvljvxhjcq] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.student-avatar-placeholder[b-qvljvxhjcq] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.photo-section[b-qvljvxhjcq] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.photo-preview[b-qvljvxhjcq] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.photo-preview-placeholder[b-qvljvxhjcq] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    border: 2px dashed #cbd5e1;
}

.photo-message[b-qvljvxhjcq] {
    font-size: 0.8rem;
    font-weight: 500;
}

.photo-message.success[b-qvljvxhjcq] {
    color: #16a34a;
}

.photo-message.error[b-qvljvxhjcq] {
    color: #dc2626;
}
/* /Components/Shared/Breadcrumbs.razor.rz.scp.css */
/* ========================================
   BREADCRUMBS
   ======================================== */

.breadcrumbs[b-3e84l2pl3l] {
    margin-bottom: 1rem;
}

.breadcrumbs ol[b-3e84l2pl3l] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs li[b-3e84l2pl3l] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.crumb-link[b-3e84l2pl3l] {
    color: var(--color-slate-500);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s;
}

.crumb-link:hover[b-3e84l2pl3l] {
    color: var(--color-blue-500);
    text-decoration: underline;
}

.crumb-sep[b-3e84l2pl3l] {
    color: var(--color-slate-300);
    font-size: 0.875rem;
    user-select: none;
}

.crumb-current[b-3e84l2pl3l] {
    color: var(--color-slate-700);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== Mobile: smaller text ===== */
@media (max-width: 768px) {
    .crumb-link[b-3e84l2pl3l],
    .crumb-sep[b-3e84l2pl3l],
    .crumb-current[b-3e84l2pl3l] {
        font-size: 0.8rem;
    }

    .breadcrumbs[b-3e84l2pl3l] {
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .crumb-link[b-3e84l2pl3l],
    .crumb-sep[b-3e84l2pl3l],
    .crumb-current[b-3e84l2pl3l] {
        font-size: 0.75rem;
    }

    .breadcrumbs[b-3e84l2pl3l] {
        margin-bottom: 0.5rem;
    }
}
/* /Components/Shared/DueHomeworkBanner.razor.rz.scp.css */
.homework-banner[b-29jrvvy33e] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    background: #fefce8;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 0.625rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.homework-icon[b-29jrvvy33e] {
    font-size: 1.1rem;
}

.homework-chip[b-29jrvvy33e] {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    color: #92400e;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease;
}

.homework-chip:hover[b-29jrvvy33e] {
    background: #fde68a;
    color: #78350f;
}
/* /Components/Shared/LoadingIndicator.razor.rz.scp.css */
/* ========================================
   LOADING INDICATOR
   ======================================== */

.loading-wrapper[b-1idux6x5l8] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
}

/* ===== SPINNER VARIANT ===== */
.loading-spinner[b-1idux6x5l8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.spinner-ring[b-1idux6x5l8] {
    width: 48px;
    height: 48px;
    border: 4px solid var(--color-slate-200);
    border-top-color: var(--color-blue-500);
    border-radius: 50%;
    animation: spin-b-1idux6x5l8 0.8s linear infinite;
}

@keyframes spin-b-1idux6x5l8 {
    to { transform: rotate(360deg); }
}

.loading-message[b-1idux6x5l8] {
    font-size: 0.875rem;
    color: var(--color-slate-500);
    font-weight: 500;
}

/* ===== SKELETON VARIANT ===== */
.loading-skeleton[b-1idux6x5l8] {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.skeleton-line[b-1idux6x5l8] {
    height: 14px;
    background: linear-gradient(90deg, var(--color-slate-100) 25%, var(--color-slate-200) 50%, var(--color-slate-100) 75%);
    background-size: 200% 100%;
    border-radius: var(--radius-sm);
    animation: shimmer-b-1idux6x5l8 1.5s infinite;
}

.skeleton-line.short[b-1idux6x5l8] {
    height: 10px;
}

@keyframes shimmer-b-1idux6x5l8 {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-row[b-1idux6x5l8] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-lg);
}

.skeleton-avatar[b-1idux6x5l8] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(90deg, var(--color-slate-100) 25%, var(--color-slate-200) 50%, var(--color-slate-100) 75%);
    background-size: 200% 100%;
    animation: shimmer-b-1idux6x5l8 1.5s infinite;
}

.skeleton-content[b-1idux6x5l8] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skeleton-footer[b-1idux6x5l8] {
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}
/* /Components/Shared/OnboardingOverlay.razor.rz.scp.css */
.onboarding-backdrop[b-2l569tlbl0] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.onboarding-card[b-2l569tlbl0] {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: slide-up-b-2l569tlbl0 0.3s ease-out;
}

@keyframes slide-up-b-2l569tlbl0 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.onboarding-icon[b-2l569tlbl0] {
    width: 64px;
    height: 64px;
    background: var(--color-blue-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.onboarding-icon i[b-2l569tlbl0] {
    font-size: 1.75rem;
    color: var(--color-blue-500);
}

.onboarding-card h2[b-2l569tlbl0] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-slate-800);
    margin: 0 0 0.75rem;
}

.onboarding-subtitle[b-2l569tlbl0] {
    color: var(--color-slate-500);
    font-size: 0.9375rem;
    margin: 0 0 1.75rem;
    line-height: 1.5;
}

.onboarding-features[b-2l569tlbl0] {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 2rem;
    text-align: left;
    background: var(--color-slate-50);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
}

.feature-item[b-2l569tlbl0] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-slate-700);
}

.feature-item i[b-2l569tlbl0] {
    width: 20px;
    color: var(--color-blue-500);
    text-align: center;
    flex-shrink: 0;
}

.onboarding-actions[b-2l569tlbl0] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.onboarding-actions .e-btn[b-2l569tlbl0] {
    width: 100%;
}
/* /Components/Shared/StudentAvatar.razor.rz.scp.css */
.student-avatar-img[b-mahau6xykf] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.student-avatar-placeholder[b-mahau6xykf] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
}
/* /Components/Shared/ToastContainer.razor.rz.scp.css */
/* ========================================
   TOAST CONTAINER
   ======================================== */

.toast-container[b-x5g9uvuzh0] {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 400px;
}

.toast[b-x5g9uvuzh0] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--color-slate-200);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    font-size: 0.875rem;
    animation: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast-enter[b-x5g9uvuzh0] {
    opacity: 0;
    transform: translateX(100%);
}

.toast-exit[b-x5g9uvuzh0] {
    opacity: 0;
    transform: translateX(100%);
}

@keyframes toast-in-b-x5g9uvuzh0 {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes toast-out-b-x5g9uvuzh0 {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(100%); }
}

.toast-icon[b-x5g9uvuzh0] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 700;
}

.toast-success .toast-icon[b-x5g9uvuzh0] { background: var(--color-green-100); color: var(--color-green-600); }
.toast-error .toast-icon[b-x5g9uvuzh0] { background: var(--color-red-100); color: var(--color-red-600); }
.toast-warning .toast-icon[b-x5g9uvuzh0] { background: var(--color-yellow-100); color: var(--color-yellow-700); }
.toast-info .toast-icon[b-x5g9uvuzh0] { background: var(--color-blue-100); color: var(--color-blue-600); }

.toast-success[b-x5g9uvuzh0] { border-left: 4px solid var(--color-green-500); }
.toast-error[b-x5g9uvuzh0] { border-left: 4px solid var(--color-red-500); }
.toast-warning[b-x5g9uvuzh0] { border-left: 4px solid var(--color-yellow-500); }
.toast-info[b-x5g9uvuzh0] { border-left: 4px solid var(--color-blue-500); }

.toast-content[b-x5g9uvuzh0] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
    min-width: 0;
}

.toast-message[b-x5g9uvuzh0] {
    font-weight: 500;
    color: var(--color-slate-800);
    line-height: 1.4;
}

.toast-detail[b-x5g9uvuzh0] {
    font-size: 0.8125rem;
    color: var(--color-slate-500);
    line-height: 1.4;
}

.toast-close[b-x5g9uvuzh0] {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--color-slate-400);
    font-size: 0.875rem;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.15s;
}

.toast-close:hover[b-x5g9uvuzh0] { color: var(--color-slate-600); }

/* ===== Mobile: bottom-center, full-width ===== */
@media (max-width: 768px) {
    .toast-container[b-x5g9uvuzh0] {
        bottom: 0.75rem;
        right: 0.75rem;
        left: 0.75rem;
        max-width: none;
    }

    .toast-enter[b-x5g9uvuzh0] {
        transform: translateY(100%);
    }

    .toast-exit[b-x5g9uvuzh0] {
        transform: translateY(100%);
    }

    @keyframes toast-in-b-x5g9uvuzh0 {
        from { opacity: 0; transform: translateY(100%); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes toast-out-b-x5g9uvuzh0 {
        from { opacity: 1; transform: translateY(0); }
        to { opacity: 0; transform: translateY(100%); }
    }
}

@media (max-width: 480px) {
    .toast-container[b-x5g9uvuzh0] {
        bottom: 0.5rem;
        right: 0.5rem;
        left: 0.5rem;
    }

    .toast[b-x5g9uvuzh0] {
        padding: 0.625rem 0.75rem;
        gap: 0.5rem;
        font-size: 0.8125rem;
    }
}
