/* /Components/ClassList/ClassListOptions.razor.rz.scp.css */
.options-panel[b-6ci68l9os1] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.options-panel-header[b-6ci68l9os1] {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 12px 16px;
    font-size: 1rem;
}

.options-panel-body[b-6ci68l9os1] {
    padding: 16px;
}

.field-group[b-6ci68l9os1] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.field-group label[b-6ci68l9os1] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #495057;
}

.field-group select[b-6ci68l9os1],
.field-group input[type="number"][b-6ci68l9os1],
.field-group input[type="date"][b-6ci68l9os1] {
    padding: 6px 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #212529;
    background: white;
    width: 100%;
}

.field-group select:focus[b-6ci68l9os1],
.field-group input:focus[b-6ci68l9os1] {
    outline: none;
    border-color: #006EB6;
    box-shadow: 0 0 0 2px rgba(0, 110, 182, 0.15);
}

.checkbox-option[b-6ci68l9os1] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.muted-note[b-6ci68l9os1] {
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
    margin: 0;
}

.generate-btn[b-6ci68l9os1] {
    display: block;
    width: 100%;
    padding: 8px 16px;
    background: #006EB6;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.15s ease;
}

.generate-btn:hover[b-6ci68l9os1] {
    background: #005a94;
}

.generate-btn:active[b-6ci68l9os1] {
    background: #004880;
}
/* /Components/ClassList/ExportButtons.razor.rz.scp.css */
.export-buttons[b-wrxna3vixx] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.export-btn[b-wrxna3vixx] {
    padding: 0.4rem 0.875rem;
    border: none;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    cursor: pointer;
    color: #fff;
    display: inline-flex;
    align-items: center;
}

.export-btn:disabled[b-wrxna3vixx] { opacity: 0.6; cursor: not-allowed; }

.print-pdf-btn[b-wrxna3vixx] { background: #949598; }
.print-pdf-btn:hover[b-wrxna3vixx] { background: #737376; }

.csv-btn[b-wrxna3vixx] { background: #198754; }
.csv-btn:hover:not(:disabled)[b-wrxna3vixx] { background: #146c43; }

.export-error[b-wrxna3vixx] {
    color: #842029;
    font-size: 0.875rem;
}

.btn-spinner[b-wrxna3vixx] {
    display: inline-block;
    width: 0.9rem;
    height: 0.9rem;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin-b-wrxna3vixx 0.75s linear infinite;
    margin-right: 0.35rem;
    vertical-align: middle;
}

@keyframes spin-b-wrxna3vixx { to { transform: rotate(360deg); } }
/* /Components/ClassList/StudentCard.razor.rz.scp.css */
/* Student card styles — scoped to StudentCard.razor */
.student-card[b-pnb8ybo536] {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 0.75rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    break-inside: avoid;
}

.student-photo-wrapper[b-pnb8ybo536] {
    width: 80px;
    height: 100px;
    margin-bottom: 0.5rem;
    overflow: hidden;
    border-radius: 0.25rem;
    flex-shrink: 0;
}

.student-photo[b-pnb8ybo536] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-photo-placeholder[b-pnb8ybo536] {
    opacity: 0.4;
}

.student-name[b-pnb8ybo536] {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.student-field[b-pnb8ybo536] {
    font-size: 0.8rem;
    color: #555;
    word-break: break-word;
}

.field-label[b-pnb8ybo536] {
    font-weight: 600;
    color: #333;
}

@media print {
    .student-card[b-pnb8ybo536] {
        border: 1px solid #000;
        padding: 0.4rem;
        font-size: 9pt;
    }

    .student-photo-wrapper[b-pnb8ybo536] {
        width: 60px;
        height: 75px;
    }
}
/* /Components/ClassList/StudentGrid.razor.rz.scp.css */
/* Student grid styles — scoped to StudentGrid.razor */
.student-grid-wrapper[b-rehv1ywdyt] {
    width: 100%;
}

.grid-header[b-rehv1ywdyt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.student-count[b-rehv1ywdyt] { color: #949598; font-size: 0.875rem; }

.warning-message[b-rehv1ywdyt] {
    padding: 0.75rem 1rem;
    border: 1px solid #ffecb5;
    border-radius: 0.25rem;
    background: #fff3cd;
    color: #664d03;
    margin-bottom: 1rem;
}

.student-grid[b-rehv1ywdyt] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

@media print {
    .student-grid[b-rehv1ywdyt] {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .student-grid[b-rehv1ywdyt] {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .student-grid[b-rehv1ywdyt] {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* /Components/ClassRoll/ClassRollOptions.razor.rz.scp.css */
.options-panel[b-eataaz7h4q] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.options-panel-header[b-eataaz7h4q] {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 12px 16px;
    font-size: 1rem;
}

.options-panel-body[b-eataaz7h4q] {
    padding: 16px;
}

.field-group[b-eataaz7h4q] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.field-group label[b-eataaz7h4q] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #495057;
}

.field-group select[b-eataaz7h4q],
.field-group input[type="number"][b-eataaz7h4q],
.field-group input[type="date"][b-eataaz7h4q] {
    padding: 6px 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #212529;
    background: white;
    width: 100%;
}

.field-group select:focus[b-eataaz7h4q],
.field-group input:focus[b-eataaz7h4q] {
    outline: none;
    border-color: #006EB6;
    box-shadow: 0 0 0 2px rgba(0, 110, 182, 0.15);
}

.radio-option[b-eataaz7h4q] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.checkbox-option[b-eataaz7h4q] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.muted-note[b-eataaz7h4q] {
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
    margin: 0;
}

.generate-btn[b-eataaz7h4q] {
    display: block;
    width: 100%;
    padding: 8px 16px;
    background: #006EB6;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.15s ease;
}

.generate-btn:hover[b-eataaz7h4q] {
    background: #005a94;
}

.generate-btn:active[b-eataaz7h4q] {
    background: #004880;
}
/* /Components/ClassRoll/ClassRollPreview.razor.rz.scp.css */
/* Class roll preview styles — scoped to ClassRollPreview.razor */
.class-roll-preview[b-b94c89xap9] {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1rem;
    min-width: 0;
    overflow: hidden;
}

.preview-header[b-b94c89xap9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.preview-stats[b-b94c89xap9] { color: #949598; font-size: 0.875rem; }

.table-scroll[b-b94c89xap9] {
    overflow-x: auto;
    min-width: 0;
    width: 100%;
}

.class-roll-table[b-b94c89xap9] {
    width: auto;
    min-width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    table-layout: auto;
}

.class-roll-table th[b-b94c89xap9],
.class-roll-table td[b-b94c89xap9] {
    padding: 0.375rem 0.625rem;
    border: 1px solid #dee2e6;
    text-align: left;
    white-space: nowrap;
}

.class-roll-table thead th[b-b94c89xap9] {
    background: #f0f2f4;
    font-weight: 600;
    border-bottom: 2px solid #ced4da;
    position: sticky;
    top: 0;
    z-index: 1;
}

.class-roll-table th:first-child[b-b94c89xap9],
.class-roll-table td:first-child[b-b94c89xap9] {
    width: 2.25rem;
    text-align: center;
    color: #949598;
}

.class-roll-table th:nth-child(2)[b-b94c89xap9],
.class-roll-table td:nth-child(2)[b-b94c89xap9] {
    min-width: 14rem;
}

.class-roll-table .col-attendance[b-b94c89xap9] {
    text-align: center;
    width: 2.75rem;
    min-width: 2.75rem;
    max-width: 2.75rem;
}

.class-roll-table tbody tr:nth-child(even) td[b-b94c89xap9] { background: #f8f9fa; }
.class-roll-table tbody tr:hover td[b-b94c89xap9] { background: #e9ecef !important; }

.warning-message[b-b94c89xap9] {
    padding: 0.75rem 1rem;
    border: 1px solid #ffecb5;
    border-radius: 0.25rem;
    background: #fff3cd;
    color: #664d03;
    margin-bottom: 1rem;
}

@media print {
    .no-print[b-b94c89xap9] {
        display: none !important;
    }

    .class-roll-table[b-b94c89xap9] {
        width: 100%;
        border-collapse: collapse;
        font-size: 10pt;
    }

    .class-roll-table th[b-b94c89xap9],
    .class-roll-table td[b-b94c89xap9] {
        border: 1px solid #000;
        padding: 4px 6px;
    }

    .class-roll-table thead[b-b94c89xap9] {
        display: table-header-group;
    }

    body[b-b94c89xap9] {
        margin: 0.5in;
    }
}
/* /Components/ClassRoll/ExportButtons.razor.rz.scp.css */
.export-buttons[b-eqjfayvmqi] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.export-btn[b-eqjfayvmqi] {
    padding: 0.4rem 0.875rem;
    border: none;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    cursor: pointer;
    color: #fff;
    display: inline-flex;
    align-items: center;
}

.export-btn:disabled[b-eqjfayvmqi] { opacity: 0.6; cursor: not-allowed; }

.print-pdf-btn[b-eqjfayvmqi] { background: #949598; }
.print-pdf-btn:hover[b-eqjfayvmqi] { background: #737376; }

.csv-btn[b-eqjfayvmqi] { background: #198754; }
.csv-btn:hover:not(:disabled)[b-eqjfayvmqi] { background: #146c43; }

.export-error[b-eqjfayvmqi] {
    color: #842029;
    font-size: 0.875rem;
}

.btn-spinner[b-eqjfayvmqi] {
    display: inline-block;
    width: 0.9rem;
    height: 0.9rem;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin-b-eqjfayvmqi 0.75s linear infinite;
    margin-right: 0.35rem;
    vertical-align: middle;
}

@keyframes spin-b-eqjfayvmqi { to { transform: rotate(360deg); } }
/* /Components/FacultyManagement/InstructorPermissions.razor.rz.scp.css */
.instructor-permissions[b-l7g4iobwio] {
    height: 100%; /* fill card grid cell so cards in a row are equal height */
    transition: box-shadow 0.15s ease-in-out;
}

.instructor-permissions:hover[b-l7g4iobwio] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Card header: keep the course info on one line with ellipsis on small screens */
.instructor-permissions .card-header[b-l7g4iobwio] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Meeting time rows inside card-body */
.instructor-permissions .card-body .small[b-l7g4iobwio] {
    line-height: 1.4;
}
/* /Components/FacultyManagement/SectionSelector.razor.rz.scp.css */
.section-selector[b-8z1nt6yesf] {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 2.75rem; /* reserve space so layout doesn't jump during load */
}

.section-selector .form-label[b-8z1nt6yesf] {
    margin-bottom: 0.25rem;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Option text: course + title can be long; let it wrap gracefully */
.section-selector .form-select option[b-8z1nt6yesf] {
    white-space: normal;
}
/* /Components/FacultyManagement/SessionSelector.razor.rz.scp.css */
.session-selector[b-ye9wmd6ohq] {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Tighten the gap between label and control */
.session-selector .form-label[b-ye9wmd6ohq] {
    margin-bottom: 0.25rem;
    font-weight: 500;
    font-size: 0.875rem;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* #blazor-error-ui styles live in wwwroot/app.css (global scope required) */
/* /Components/Layout/Shared/Login.razor.rz.scp.css */
/* Login Component Scoped Styling */

/* Main login container with full viewport styling */
.login-wrapper[b-enjahhnvat] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #006EB6 0%, #004d80 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Login container equivalent */
.login-container[b-enjahhnvat] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Login row equivalent */
.login-row[b-enjahhnvat] {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    justify-content: center;
}

/* Login column equivalent */
.login-column[b-enjahhnvat] {
    width: 100%;
    max-width: 450px;
    padding: 0 15px;
}

/* Login card styling */
.login-card[b-enjahhnvat] {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    animation: loginSlideIn-b-enjahhnvat 0.6s ease-out;
    position: relative;
    transition: all 0.3s ease;
}

@keyframes loginSlideIn-b-enjahhnvat {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-card-header[b-enjahhnvat] {
    background: linear-gradient(135deg, #006EB6 0%, #004d80 100%);
    color: white;
    padding: 24px 32px;
    border-bottom: none;
    text-align: center;
}

.login-card-header h4[b-enjahhnvat] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: white;
}

.login-card-body[b-enjahhnvat] {
    padding: 32px;
    text-align: center;
}

.login-card-body p[b-enjahhnvat] {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Login text center equivalent */
.login-text-center[b-enjahhnvat] {
    text-align: center;
}

/* Login spinner styling */
.login-spinner[b-enjahhnvat] {
    display: inline-block;
    width: 48px;
    height: 48px;
    border: 4px solid #e5e7eb;
    border-top: 4px solid #006EB6;
    border-radius: 50%;
    animation: loginSpin-b-enjahhnvat 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes loginSpin-b-enjahhnvat {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.login-visually-hidden[b-enjahhnvat] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

/* Login status text */
.login-status-text[b-enjahhnvat] {
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 16px 0 0 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .login-container[b-enjahhnvat] {
        padding: 16px;
    }
    
    .login-column[b-enjahhnvat] {
        padding: 0 8px;
    }
    
    .login-card-header[b-enjahhnvat] {
        padding: 20px 24px;
    }
    
    .login-card-header h4[b-enjahhnvat] {
        font-size: 1.25rem;
    }
    
    .login-card-body[b-enjahhnvat] {
        padding: 24px;
    }
    
    .login-spinner[b-enjahhnvat] {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }
}

/* Additional professional touches */
.login-card[b-enjahhnvat]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #006EB6, #004d80, #005a94);
}

/* Focus and hover states for accessibility */
.login-card:hover[b-enjahhnvat] {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
/* /Components/Layout/Shared/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-19ppufdp0s],
.components-reconnect-repeated-attempt-visible[b-19ppufdp0s],
.components-reconnect-failed-visible[b-19ppufdp0s],
.components-pause-visible[b-19ppufdp0s],
.components-resume-failed-visible[b-19ppufdp0s],
.components-rejoining-animation[b-19ppufdp0s] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-19ppufdp0s],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-19ppufdp0s],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-19ppufdp0s],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-19ppufdp0s],
#components-reconnect-modal.components-reconnect-retrying[b-19ppufdp0s],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-19ppufdp0s],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-19ppufdp0s],
#components-reconnect-modal.components-reconnect-failed[b-19ppufdp0s],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-19ppufdp0s] {
    display: block;
}


#components-reconnect-modal[b-19ppufdp0s] {
    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-19ppufdp0s 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-19ppufdp0s 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-19ppufdp0s 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-19ppufdp0s]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-19ppufdp0s 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-19ppufdp0s {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-19ppufdp0s {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-19ppufdp0s {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-19ppufdp0s] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-19ppufdp0s] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-19ppufdp0s] {
    border: 0;
    background-color: #006EB6;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-19ppufdp0s] {
        background-color: #004d80;
    }

    #components-reconnect-modal button:active[b-19ppufdp0s] {
        background-color: #005a94;
    }

.components-rejoining-animation[b-19ppufdp0s] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-19ppufdp0s] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-19ppufdp0s 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-19ppufdp0s] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-19ppufdp0s {
    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/ClassList.razor.rz.scp.css */
.page-container[b-ntrb3h0yrz] {
    padding: 20px;
    max-width: 100%;
}

.error-message[b-ntrb3h0yrz] {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.info-message[b-ntrb3h0yrz] {
    color: #495057;
    font-style: italic;
}

.loading-indicator[b-ntrb3h0yrz] {
    text-align: center;
    padding: 50px;
}

.loading-indicator .spinner[b-ntrb3h0yrz] {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 3px solid #dee2e6;
    border-top-color: #006EB6;
    border-radius: 50%;
    animation: spin-b-ntrb3h0yrz 0.75s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin-b-ntrb3h0yrz {
    to { transform: rotate(360deg); }
}

.page-layout[b-ntrb3h0yrz] {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.page-sidebar[b-ntrb3h0yrz] {
    flex: 0 0 280px;
    min-width: 240px;
}

.page-content[b-ntrb3h0yrz] {
    flex: 1;
    min-width: 0;
}
/* /Components/Pages/ClassRoll.razor.rz.scp.css */
.page-container[b-sorlvdmxd6] {
    padding: 20px;
    max-width: 100%;
}

.error-message[b-sorlvdmxd6] {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.info-message[b-sorlvdmxd6] {
    color: #495057;
    font-style: italic;
}

.loading-indicator[b-sorlvdmxd6] {
    text-align: center;
    padding: 50px;
}

.loading-indicator .spinner[b-sorlvdmxd6] {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 3px solid #dee2e6;
    border-top-color: #006EB6;
    border-radius: 50%;
    animation: spin-b-sorlvdmxd6 0.75s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin-b-sorlvdmxd6 {
    to { transform: rotate(360deg); }
}

.page-layout[b-sorlvdmxd6] {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.page-sidebar[b-sorlvdmxd6] {
    flex: 0 0 280px;
    min-width: 240px;
}

.page-content[b-sorlvdmxd6] {
    flex: 1;
    min-width: 0;
}
/* /Components/Pages/SeatingChart.razor.rz.scp.css */
/* Seating Chart Main Container */
.seating-chart-container[b-r5cjsepzn2] {
    padding: 20px;
    max-width: 100%;
}

.error-message[b-r5cjsepzn2] {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.loading-spinner[b-r5cjsepzn2] {
    text-align: center;
    padding: 50px;
}

.loading-spinner .spinner[b-r5cjsepzn2] {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 3px solid #dee2e6;
    border-top-color: #006EB6;
    border-radius: 50%;
    animation: spin-b-r5cjsepzn2 0.75s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin-b-r5cjsepzn2 {
    to { transform: rotate(360deg); }
}

/* Two-column layout */
.seating-chart-layout[b-r5cjsepzn2] {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.seating-chart-main[b-r5cjsepzn2] {
    flex: 0 0 66%;
    min-width: 0;
}

.seating-chart-sidebar[b-r5cjsepzn2] {
    flex: 0 0 calc(34% - 20px);
    min-width: 220px;
}

/* Seating Grid Styles */
[b-r5cjsepzn2] .seating-grid-container {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    overflow-x: auto;
}

[b-r5cjsepzn2] .seating-grid {
    display: grid;
    gap: 8px;
    min-height: 400px;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
}

[b-r5cjsepzn2] .empty-grid-message {
    text-align: center;
    padding: 50px;
    color: #949598;
    font-style: italic;
}

/* Seat Cell Styles */
[b-r5cjsepzn2] .seat-cell {
    position: relative;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    min-height: 80px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.2s ease;
    cursor: pointer;
}

[b-r5cjsepzn2] .seat-cell.occupied {
    border: 2px solid #28a745;
    background: #e8f5e8;
}

[b-r5cjsepzn2] .seat-cell.drag-over {
    border: 2px solid #007bff;
    background: #e3f2fd;
    transform: scale(1.02);
}

[b-r5cjsepzn2] .empty-seat {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #949598;
}

[b-r5cjsepzn2] .seat-label {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Student Card Styles (inside seat) */
[b-r5cjsepzn2] .student-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    min-height: 80px;
    padding: 8px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 1px solid #28a745;
    border-radius: 6px;
    cursor: move;
    transition: all 0.2s ease;
    position: relative;
}

[b-r5cjsepzn2] .student-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

[b-r5cjsepzn2] .student-card .student-info {
    flex: 1;
    pointer-events: none;
}

[b-r5cjsepzn2] .student-card .student-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.2;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
}

[b-r5cjsepzn2] .student-card .student-email {
    font-size: 0.65rem;
    color: #718096;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
}

[b-r5cjsepzn2] .student-card .student-id {
    font-size: 0.65rem;
    color: #4a5568;
    font-family: monospace;
}

[b-r5cjsepzn2] .student-actions {
    position: absolute;
    top: 2px;
    right: 2px;
}

[b-r5cjsepzn2] .remove-btn {
    width: 18px;
    height: 18px;
    padding: 0;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: auto;
    cursor: pointer;
}

[b-r5cjsepzn2] .student-card:hover .remove-btn {
    opacity: 1;
}

[b-r5cjsepzn2] .remove-btn:hover {
    background: #dc3545;
    color: white;
}

[b-r5cjsepzn2] .remove-icon {
    font-size: 10px;
    line-height: 1;
}

/* Unassigned Students Styles */
[b-r5cjsepzn2] .unassigned-students-container {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    height: fit-content;
    max-height: 600px;
    overflow-y: auto;
}

[b-r5cjsepzn2] .unassigned-students-container h4 {
    margin-bottom: 15px;
    color: #495057;
    font-size: 1.1rem;
}

[b-r5cjsepzn2] .search-filter {
    margin-bottom: 12px;
}

[b-r5cjsepzn2] .search-filter input {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 0.9rem;
}

[b-r5cjsepzn2] .students-list {
    max-height: 450px;
    overflow-y: auto;
}

[b-r5cjsepzn2] .unassigned-student-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    background: white;
    cursor: move;
    transition: all 0.2s ease;
    position: relative;
}

[b-r5cjsepzn2] .unassigned-student-item:hover {
    background: #f8f9fa;
    border-color: #007bff;
    transform: translateX(2px);
}

[b-r5cjsepzn2] .student-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

[b-r5cjsepzn2] .student-avatar .student-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

[b-r5cjsepzn2] .student-initials {
    font-size: 0.8rem;
    font-weight: 600;
    color: #495057;
}

[b-r5cjsepzn2] .student-details {
    flex: 1;
    min-width: 0;
}

[b-r5cjsepzn2] .student-details .student-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[b-r5cjsepzn2] .student-details .student-id {
    font-size: 0.75rem;
    color: #949598;
    font-family: monospace;
    margin-bottom: 1px;
}

[b-r5cjsepzn2] .student-details .student-email {
    font-size: 0.7rem;
    color: #868e96;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[b-r5cjsepzn2] .drag-handle {
    color: #adb5bd;
    font-size: 1.2rem;
    cursor: move;
    padding: 5px;
}

[b-r5cjsepzn2] .drag-handle:hover {
    color: #949598;
}

[b-r5cjsepzn2] .no-students, [b-r5cjsepzn2] .no-matches {
    text-align: center;
    padding: 30px;
    color: #949598;
    font-style: italic;
}

/* Toolbar Styles */
[b-r5cjsepzn2] .seating-chart-toolbar {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

[b-r5cjsepzn2] .toolbar-layout {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: flex-start;
}

[b-r5cjsepzn2] .toolbar-section {
    flex: 1;
    min-width: 180px;
}

[b-r5cjsepzn2] .toolbar-section h5 {
    margin: 0 0 10px 0;
    color: #495057;
    font-size: 1rem;
}

[b-r5cjsepzn2] .toolbar-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

[b-r5cjsepzn2] .toolbar-btn {
    padding: 6px 14px;
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

[b-r5cjsepzn2] .toolbar-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

[b-r5cjsepzn2] .save-btn {
    background: #006EB6;
    color: white;
}

[b-r5cjsepzn2] .save-btn:hover:not(:disabled) {
    background: #005a94;
}

[b-r5cjsepzn2] .reload-btn {
    background: #949598;
    color: white;
}

[b-r5cjsepzn2] .reload-btn:hover:not(:disabled) {
    background: #737376;
}

[b-r5cjsepzn2] .reset-btn {
    background: #dc3545;
    color: white;
}

[b-r5cjsepzn2] .reset-btn:hover:not(:disabled) {
    background: #b02a37;
}

[b-r5cjsepzn2] .grid-inputs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

[b-r5cjsepzn2] .field-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

[b-r5cjsepzn2] .field-group label {
    font-size: 0.875rem;
    color: #495057;
    white-space: nowrap;
}

[b-r5cjsepzn2] .field-group input[type="number"] {
    width: 64px;
    padding: 4px 8px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 0.875rem;
}

[b-r5cjsepzn2] .field-group select {
    padding: 4px 8px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 0.875rem;
    min-width: 180px;
    max-width: 300px;
}

[b-r5cjsepzn2] .muted-note {
    font-size: 0.8rem;
    color: #949598;
    font-style: italic;
}

[b-r5cjsepzn2] .btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-r5cjsepzn2 0.75s linear infinite;
}

[b-r5cjsepzn2] .unsaved-indicator {
    color: #ffc107;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 900px) {
    .seating-chart-layout[b-r5cjsepzn2] {
        flex-direction: column;
    }

    .seating-chart-main[b-r5cjsepzn2],
    .seating-chart-sidebar[b-r5cjsepzn2] {
        flex: 1 1 100%;
    }

    [b-r5cjsepzn2] .seating-grid {
        gap: 4px;
        padding: 5px;
    }

    [b-r5cjsepzn2] .seat-cell {
        min-height: 60px;
        min-width: 80px;
    }

    [b-r5cjsepzn2] .unassigned-students-container {
        max-height: 300px;
    }
}

/* Drag animation */
@keyframes dragPulse-b-r5cjsepzn2 {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

[b-r5cjsepzn2] .student-card[draggable="true"]:active {
    animation: dragPulse-b-r5cjsepzn2 0.5s ease-in-out;
}

[b-r5cjsepzn2] .unassigned-student-item[draggable="true"]:active {
    animation: dragPulse-b-r5cjsepzn2 0.5s ease-in-out;
    background: #e3f2fd;
}

/* Seating Grid Styles */
.seating-grid-container[b-r5cjsepzn2] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    overflow-x: auto;
}

.seating-grid[b-r5cjsepzn2] {
    display: grid;
    gap: 8px;
    min-height: 400px;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
}

.empty-grid-message[b-r5cjsepzn2] {
    text-align: center;
    padding: 50px;
    color: #949598;
    font-style: italic;
}

/* Seat Cell Styles */
.seat-cell[b-r5cjsepzn2] {
    position: relative;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    min-height: 80px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.2s ease;
    cursor: pointer;
}

.seat-cell.occupied[b-r5cjsepzn2] {
    border: 2px solid #28a745;
    background: #e8f5e8;
}

.seat-cell.drag-over[b-r5cjsepzn2] {
    border: 2px solid #007bff;
    background: #e3f2fd;
    transform: scale(1.02);
}

.empty-seat[b-r5cjsepzn2] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #949598;
}

.seat-label[b-r5cjsepzn2] {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Student Card Styles */
.student-card[b-r5cjsepzn2] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    min-height: 80px;
    padding: 8px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 1px solid #28a745;
    border-radius: 6px;
    cursor: move;
    transition: all 0.2s ease;
    position: relative;
}

.student-card:hover[b-r5cjsepzn2] {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.student-info[b-r5cjsepzn2] {
    flex: 1;
    pointer-events: none;
}

.student-name[b-r5cjsepzn2] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.2;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.student-email[b-r5cjsepzn2] {
    font-size: 0.65rem;
    color: #718096;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.student-id[b-r5cjsepzn2] {
    font-size: 0.65rem;
    color: #4a5568;
    font-family: monospace;
}

.student-actions[b-r5cjsepzn2] {
    position: absolute;
    top: 2px;
    right: 2px;
}

.remove-btn[b-r5cjsepzn2] {
    width: 18px;
    height: 18px;
    padding: 0;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: auto;
}

.student-card:hover .remove-btn[b-r5cjsepzn2] {
    opacity: 1;
}

.remove-btn:hover[b-r5cjsepzn2] {
    background: #dc3545;
    color: white;
}

.remove-icon[b-r5cjsepzn2] {
    font-size: 10px;
    line-height: 1;
}

/* Unassigned Students Styles */
.unassigned-students-container[b-r5cjsepzn2] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    height: fit-content;
    max-height: 600px;
    overflow-y: auto;
}

.unassigned-students-container h4[b-r5cjsepzn2] {
    margin-bottom: 15px;
    color: #495057;
    font-size: 1.1rem;
}

.search-filter input[b-r5cjsepzn2] {
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.students-list[b-r5cjsepzn2] {
    max-height: 450px;
    overflow-y: auto;
}

.unassigned-student-item[b-r5cjsepzn2] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    background: white;
    cursor: move;
    transition: all 0.2s ease;
    position: relative;
}

.unassigned-student-item:hover[b-r5cjsepzn2] {
    background: #f8f9fa;
    border-color: #007bff;
    transform: translateX(2px);
}

.student-avatar[b-r5cjsepzn2] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.student-photo[b-r5cjsepzn2] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-initials[b-r5cjsepzn2] {
    font-size: 0.8rem;
    font-weight: 600;
    color: #495057;
}

.student-details[b-r5cjsepzn2] {
    flex: 1;
    min-width: 0;
}

.student-details .student-name[b-r5cjsepzn2] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.student-details .student-id[b-r5cjsepzn2] {
    font-size: 0.75rem;
    color: #949598;
    font-family: monospace;
    margin-bottom: 1px;
}

.student-details .student-email[b-r5cjsepzn2] {
    font-size: 0.7rem;
    color: #868e96;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.drag-handle[b-r5cjsepzn2] {
    color: #adb5bd;
    font-size: 1.2rem;
    cursor: move;
    padding: 5px;
}

.drag-handle:hover[b-r5cjsepzn2] {
    color: #949598;
}

.no-students[b-r5cjsepzn2], .no-matches[b-r5cjsepzn2] {
    text-align: center;
    padding: 30px;
    color: #949598;
    font-style: italic;
}

/* Toolbar Styles */
.seating-chart-toolbar[b-r5cjsepzn2] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
}

.toolbar-section h5[b-r5cjsepzn2] {
    margin-bottom: 10px;
    color: #495057;
    font-size: 1rem;
}

.unsaved-indicator[b-r5cjsepzn2] {
    color: #ffc107;
    font-weight: bold;
    margin-left: 5px;
}

.btn-group .btn[b-r5cjsepzn2] {
    border-radius: 0;
}

.btn-group .btn:first-child[b-r5cjsepzn2] {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.btn-group .btn:last-child[b-r5cjsepzn2] {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .seating-grid[b-r5cjsepzn2] {
        gap: 4px;
        padding: 5px;
    }
    
    .seat-cell[b-r5cjsepzn2] {
        min-height: 60px;
        min-width: 80px;
    }
    
    .student-card[b-r5cjsepzn2] {
        min-height: 60px;
        padding: 4px;
    }
    
    .student-name[b-r5cjsepzn2] {
        font-size: 0.7rem;
    }
    
    .student-email[b-r5cjsepzn2], .student-id[b-r5cjsepzn2] {
        font-size: 0.6rem;
    }
    
    .unassigned-students-container[b-r5cjsepzn2] {
        margin-top: 20px;
        max-height: 300px;
    }
}

/* Animation for drag operations */
@keyframes dragPulse-b-r5cjsepzn2 {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.student-card[draggable="true"]:active[b-r5cjsepzn2] {
    animation: dragPulse-b-r5cjsepzn2 0.5s ease-in-out;
}

.unassigned-student-item[draggable="true"]:active[b-r5cjsepzn2] {
    animation: dragPulse-b-r5cjsepzn2 0.5s ease-in-out;
    background: #e3f2fd;
}
/* /Components/Pages/_Examples/FullWidthMenu.razor.rz.scp.css */
.page-header[b-vg9uvidckf] {
    margin-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 1rem;
}

.page-header h3[b-vg9uvidckf] {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.page-header p[b-vg9uvidckf] {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 80ch;
}

.table-container[b-vg9uvidckf] {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow-x: auto; /* Ensures table is scrollable on smaller screens */
}

.data-table[b-vg9uvidckf] {
    width: 100%;
    border-collapse: collapse;
    min-width: 1200px; /* Ensures the table is wide */
}

.data-table th[b-vg9uvidckf],
.data-table td[b-vg9uvidckf] {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    white-space: nowrap;
}

.data-table thead[b-vg9uvidckf] {
    background-color: #f8fafc;
}

.data-table th[b-vg9uvidckf] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.data-table tbody tr:hover[b-vg9uvidckf] {
    background-color: #f1f5f9;
}

.data-table td[b-vg9uvidckf] {
    color: #334155;
}

.status-badge[b-vg9uvidckf] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
}

.status-active[b-vg9uvidckf] {
    background-color: #dcfce7;
    color: #166534;
}

.status-inactive[b-vg9uvidckf] {
    background-color: #fee2e2;
    color: #991b1b;
}

.status-pending[b-vg9uvidckf] {
    background-color: #fef9c3;
    color: #854d0e;
}
/* /Components/Shared/DataPolicyAcknowledgmentModal.razor.rz.scp.css */
.modal-overlay[b-2jgq2xmnua] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.visible[b-2jgq2xmnua] {
    display: flex;
}

.modal-content[b-2jgq2xmnua] {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideIn-b-2jgq2xmnua 0.3s ease-out;
}

@keyframes slideIn-b-2jgq2xmnua {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-2jgq2xmnua] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h2[b-2jgq2xmnua] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
}

.modal-close[b-2jgq2xmnua] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.modal-close:hover[b-2jgq2xmnua] {
    background-color: #f3f4f6;
    color: #1f2937;
}

.modal-body[b-2jgq2xmnua] {
    padding: 20px;
    color: #374151;
    line-height: 1.6;
}

.modal-body p[b-2jgq2xmnua] {
    margin: 0 0 16px 0;
}

.modal-body p:last-child[b-2jgq2xmnua] {
    margin-bottom: 0;
}

.modal-footer[b-2jgq2xmnua] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid #e5e7eb;
}

.btn[b-2jgq2xmnua] {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    font-weight: 500;
}

.btn-secondary[b-2jgq2xmnua] {
    background-color: #e5e7eb;
    color: #1f2937;
}

.btn-secondary:hover[b-2jgq2xmnua] {
    background-color: #d1d5db;
}

.btn-primary[b-2jgq2xmnua] {
    background-color: #3b82f6;
    color: white;
}

.btn-primary:hover[b-2jgq2xmnua] {
    background-color: #2563eb;
}

.btn-primary:active[b-2jgq2xmnua] {
    background-color: #1d4ed8;
}
/* /Components/Shared/Message/Message.razor.rz.scp.css */
.message-card[b-2pdeasownf] {
    margin-bottom: 7px;
    margin-left: 1px;
    padding: 16px;
    border-radius: 4px;
    box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 
                0px 1px 1px 0px rgba(0, 0, 0, 0.14), 
                0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}

.message-card.flat[b-2pdeasownf] {
    box-shadow: none;
    border: 1px solid #ccc;
}

.message-card.information[b-2pdeasownf] {
    background-color: var(--light-blue, #e3f2fd);
}

.message-card.warning[b-2pdeasownf] {
    background-color: var(--light-yellow, #fffde7);
}

.message-card.error[b-2pdeasownf] {
    background-color: var(--light-red-error, #ffcdd2);
    color: var(--dark-red-error, #b71c1c);
}

.message-card.success[b-2pdeasownf] {
    background-color: var(--light-green, #e8f5e9);
}

.message-card.compact[b-2pdeasownf] {
    padding: 10px;
}

.message-card.compact .message-content[b-2pdeasownf] {
    padding: 0;
}

.message-header[b-2pdeasownf] {
    margin-bottom: 8px;
}

.message-title[b-2pdeasownf] {
    font-weight: 500;
    font-size: 1.1em;
}

.icon-and-text[b-2pdeasownf] {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.icon-and-text .material-icons[b-2pdeasownf] {
    margin-right: 10px;
}
/* /Components/Shared/SectionSelection/SectionSelection.razor.rz.scp.css */
.selections[b-w9iwsy06yc] {
    display: flex;
    flex-flow: column nowrap;
    row-gap: 1em;
    margin-bottom: 1em;
    width: 100%;
}

.session-select[b-w9iwsy06yc],
.section-select[b-w9iwsy06yc] {
    min-width: 0;
}

.group-header[b-w9iwsy06yc] {
    font-weight: 500;
}

.meeting-time[b-w9iwsy06yc] {
    font-weight: 100;
    font-style: italic;
    padding-right: 3px;
}

@media (min-width: 1024px) {
    .selections[b-w9iwsy06yc] {
        flex-flow: row nowrap;
        column-gap: 1em;
    }

    .session-select[b-w9iwsy06yc],
    .section-select[b-w9iwsy06yc] {
        flex: 1;
    }
}
/* /Components/Shared/Spinner/Spinner.razor.rz.scp.css */
.full-spinner[b-dcvm1wptce] {
    margin-top: 20px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.inline-spinner[b-dcvm1wptce] {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 0.5em;
}
/* /Features/Quiz/Pages/QuizPage.razor.rz.scp.css */
.no-photo-container[b-58liijpflp] {
    margin-top: 1.5em;
}

.quiz-wrapper[b-58liijpflp] {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.quiz-container[b-58liijpflp] {
    max-width: 460px;
    width: 100%;
}

.quiz-panel[b-58liijpflp] {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 
                0px 1px 1px 0px rgba(0, 0, 0, 0.14), 
                0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}

.quiz-panel img[b-58liijpflp] {
    width: var(--photo-width);
    height: var(--photo-height);
    object-fit: cover;
    border-radius: 4px;
}

.question-choices[b-58liijpflp] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 1em;
    margin-bottom: 0.75em;
    gap: 0.5em;
}

.score-board[b-58liijpflp] {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
    font-size: 0.95em;
}

.score-board span[b-58liijpflp] {
    margin-right: 1em;
}

.bio-information[b-58liijpflp] {
    text-align: left;
    width: 100%;
    margin-bottom: 1.5em;
    animation: fadeIn-b-58liijpflp 0.5s ease-in forwards;
}

[b-58liijpflp] .correct-choice .mud-radio-button {
    background-color: #009218;
    border-radius: 10px;
    padding: 6px 10px;
}

.correct-answer-text[b-58liijpflp] {
    color: white;
    font-weight: 500;
    animation: highlightCorrect-b-58liijpflp 250ms ease-in forwards;
}

@keyframes fadeIn-b-58liijpflp {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes highlightCorrect-b-58liijpflp {
    0% { 
        background-color: transparent;
        padding: 0;
        border-radius: 0;
    }
    100% { 
        background-color: #009218;
        padding: 10px;
        border-radius: 10px;
    }
}

@media (min-width: 550px) {
    .score-board[b-58liijpflp] {
        font-size: 1.25em;
    }
}

@media (min-width: 1300px) {
    .quiz-wrapper[b-58liijpflp] {
        align-items: flex-start;
    }
}
/* /Features/StudentFlashCards/Components/Flashcard.razor.rz.scp.css */
.flashcard-container[b-4an6mytr93] {
    perspective: 600px;
    margin-bottom: 1em;
}

.flashcard[b-4an6mytr93] {
    min-height: calc((1.2941 * var(--photo-width, 150px)) + var(--flashcard-padding, 15px));
    width: var(--photo-width, 150px);
    padding: var(--flashcard-padding, 15px);
    border-radius: 6px;
    box-shadow: var(--flashcard-shadow, 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12));
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    transform-style: preserve-3d;
    transition: transform 250ms ease-in;
}

.flashcard.flipped[b-4an6mytr93] {
    animation: flipCard-b-4an6mytr93 250ms ease-in forwards;
}

@keyframes flipCard-b-4an6mytr93 {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(180deg) scaleX(-1);
    }
}

.flashcard.study-mode[b-4an6mytr93] {
    cursor: default;
    transform: none;
    animation: none;
}

.flashcard.privacy[b-4an6mytr93] {
    background-color: var(--light-red-error, #ffcdd2);
}

.flashcard img[b-4an6mytr93] {
    width: var(--photo-width, 150px);
    height: var(--photo-height, 150px);
    object-fit: cover;
}

.privacy-message[b-4an6mytr93] {
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 0.75em;
    text-align: center;
}

.student-name[b-4an6mytr93] {
    font-weight: 500;
    text-align: center;
    margin-top: 0.25em;
    animation: fadeInName-b-4an6mytr93 250ms ease-in;
}

@keyframes fadeInName-b-4an6mytr93 {
    0% {
        opacity: 0;
    }
    65% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.flashcard-and-actions[b-4an6mytr93] {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.action-buttons[b-4an6mytr93] {
    display: flex;
    gap: 0.75em;
}

.student-info[b-4an6mytr93] {
    font-size: 0.85em;
    text-align: center;
    width: 100%;
}

.student-info div[b-4an6mytr93] {
    border-bottom: 1px solid #DADADB;
    padding: 2px;
}

.student-info div:first-child[b-4an6mytr93] {
    margin-top: 0.5em;
    border-top: 1px solid #DADADB;
}

.student-info div:only-child[b-4an6mytr93] {
    border: none;
}

.early-alert-bar[b-4an6mytr93] {
    width: 100%;
    text-align: center;
    font-size: 0.85em;
    font-weight: 600;
    padding: 4px 0;
    border-radius: 9999px;
    margin-top: 4px;
}

.early-alert-low[b-4an6mytr93] {
    background-color: #ffeb3b; /* Yellow */
    color: #333;
}

.early-alert-medium[b-4an6mytr93] {
    background-color: #ff9800; /* Orange */
    color: #fff;
}

.early-alert-high[b-4an6mytr93] {
    background-color: #D11D1D; /* Red */
    color: #fff;
}
/* /Features/StudentFlashCards/Components/FlashcardGridReview.razor.rz.scp.css */
.card-grid[b-y9s1y6trxi] {
    display: grid;
    row-gap: 2em;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.score-board[b-y9s1y6trxi] {
    display: flex;
    flex-flow: column nowrap;
    row-gap: 1em;
    margin-bottom: 1em;
    font-size: 1.15em;
}

.score-board span:not(:last-child)[b-y9s1y6trxi],
.score-board button:not(:last-child)[b-y9s1y6trxi] {
    margin-right: 1em;
}

.score-board-options[b-y9s1y6trxi] {
    order: -1;
    display: flex;
    gap: 0.5em;
}

@media (min-width: 550px) {
    .card-grid[b-y9s1y6trxi] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .card-grid[b-y9s1y6trxi] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .score-board[b-y9s1y6trxi] {
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .score-board-options[b-y9s1y6trxi] {
        order: 1;
    }
}

@media (min-width: 1024px) {
    .card-grid[b-y9s1y6trxi] {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1300px) {
    .card-grid[b-y9s1y6trxi] {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}
/* /Features/StudentFlashCards/Components/FlashcardReview.razor.rz.scp.css */
.flashcard-exercise[b-lawqp1x2wn] {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin-top: 1em;
}

.score-board[b-lawqp1x2wn] {
    display: flex;
    flex-flow: column nowrap;
    gap: 0.5em;
    margin-bottom: 1em;
    font-size: 1.1em;
}

@media (min-width: 550px) {
    .score-board[b-lawqp1x2wn] {
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
        font-size: 1.25em;
    }
}

.score-board span[b-lawqp1x2wn] {
    margin-right: 1em;
}

.action-buttons[b-lawqp1x2wn] {
    display: flex;
    gap: 0.75em;
    margin-top: 1em;
}
/* /Features/StudentFlashCards/Pages/FlashCardsPage.razor.rz.scp.css */
.hide[b-nyywle1wx4] {
    display: none !important;
}

.not-teaching-message[b-nyywle1wx4] {
    width: 100%;
}

/* Toggle button group styling */
.button-toggle-group[b-nyywle1wx4] {
    display: inline-flex;
    border: 1px solid #ccc;
    border-radius: 20px;
    overflow: hidden;
}

.button-toggle-group button[b-nyywle1wx4] {
    background: #fff;
    border: none;
    border-right: 1px solid #ccc;
    padding: 8px 16px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    color: #333;
}

.button-toggle-group button:last-child[b-nyywle1wx4] {
    border-right: none;
}

.button-toggle-group button:hover:not(.active)[b-nyywle1wx4] {
    background-color: #f0f0f0;
}

.button-toggle-group button.active[b-nyywle1wx4] {
    background-color: var(--byui-brand-primary-color, #0076B6);
    color: #fff;
}

/* Responsive button text */
.btn-short-text[b-nyywle1wx4] {
    display: none;
}

@media (max-width: 549px) {
    .btn-full-text[b-nyywle1wx4] {
        display: none;
    }
    .btn-short-text[b-nyywle1wx4] {
        display: inline;
    }
}

/* Review mode transition animation */
.review-mode-transition[b-nyywle1wx4] {
    animation: fadeIn-b-nyywle1wx4 500ms ease-in;
}

@keyframes fadeIn-b-nyywle1wx4 {
    from { opacity: 0; }
    to { opacity: 1; }
}

.operation-modes[b-nyywle1wx4] {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-bottom: 1em;
    gap: 0.5em;
}

.display-options[b-nyywle1wx4] {
    display: flex;
    flex-flow: row wrap;
    gap: 0.5em 1em;
    margin-bottom: 1em;
}

.no-photo-container[b-nyywle1wx4] {
    margin-top: 1.5em;
}

.section-selection-row[b-nyywle1wx4] {
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    gap: 1em;
    margin-bottom: 1em;
}

@media (min-width: 1024px) {
    .section-selection-row[b-nyywle1wx4] {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        gap: 1em;
    }

    .section-selection-row[b-nyywle1wx4]  .selections {
        display: contents;
    }

    .section-selection-row[b-nyywle1wx4]  .session-select {
        flex: 0 0 calc(50% - 0.5em);
    }

    .section-selection-row[b-nyywle1wx4]  .section-select {
        flex: 0 0 calc(50% - 0.5em);
        display: flex;
        align-items: center;
        gap: 1em;
    }
}

.container-one-by-one[b-nyywle1wx4] {
    max-width: 500px;
}

@media (max-width: 549px) {
    .container-one-by-one[b-nyywle1wx4] {
        --photo-width: 260px;
        --photo-height: 260px;
    }
}

@media (min-width: 550px) and (max-width: 1023px) {
    .container-one-by-one[b-nyywle1wx4] {
        --photo-width: 300px;
        --photo-height: 300px;
    }
}

.batch-settings[b-nyywle1wx4] {
    display: flex;
    flex-flow: row wrap;
    gap: 1em;
    margin-bottom: 1em;
    align-items: center;
}

.batch-setting-row[b-nyywle1wx4] {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 0.5em;
}

.batch-setting-row select[b-nyywle1wx4] {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.batch-indicator[b-nyywle1wx4] {
    font-weight: 600;
    color: var(--byui-brand-primary-color, #0076B6);
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .configuration-settings[b-nyywle1wx4] {
        display: flex;
        flex-flow: row nowrap;
        justify-content: start;
        gap: 2em;
    }

    .operation-modes[b-nyywle1wx4] {
        justify-content: start;
        gap: 1em;
    }

    .container-all .no-photo-list[b-nyywle1wx4] {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        column-gap: 1em;
    }
}
