/* /Components/Layout/MainLayout.razor.rz.scp.css */
.main-shell[b-klvxmj5n91] {
    display: flex;
    min-height: 100vh;
}

.main-content[b-klvxmj5n91] {
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    min-width: 0;
}

/* Orientation adjustments */
.ltr .main-content[b-klvxmj5n91] {
    margin-left: 250px;
}

.rtl .main-content[b-klvxmj5n91] {
    margin-right: 250px;
}

@media (max-width: 767.98px) {

    .ltr .main-content[b-klvxmj5n91],
    .rtl .main-content[b-klvxmj5n91] {
        margin-left: 0;
        margin-right: 0;
    }
}
/* /Components/Layout/SideNav.razor.rz.scp.css */
.sidebar-overlay[b-nxqlmcvj4e] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.sidebar-overlay.show[b-nxqlmcvj4e] {
    display: block;
}
/* /Components/Pages/Student/OnlineExamSheet.razor.rz.scp.css */
.exam-wrapper[b-nr1youb6kh] {
    min-height: 100vh;
    background: #0f172a; /* Deep space blue */
    background-image: 
        radial-gradient(at 0% 0%, rgba(30, 58, 138, 0.3) 0, transparent 50%),
        radial-gradient(at 50% 0%, rgba(30, 58, 138, 0.2) 0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(30, 58, 138, 0.3) 0, transparent 50%);
    color: #f8fafc;
}

.loader-container[b-nr1youb6kh] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.exam-header[b-nr1youb6kh] {
    height: 70px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

[b-nr1youb6kh] .glass-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s ease;
}

.exam-question-card[b-nr1youb6kh] {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.exam-question-card h4[b-nr1youb6kh] {
    white-space: pre-wrap;
}

.exam-question-card.active[b-nr1youb6kh] {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
}

.timer-container[b-nr1youb6kh] {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Monaco', 'Consolas', monospace;
}

.timer-warning[b-nr1youb6kh] {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
    animation: pulse-timer-b-nr1youb6kh 1s infinite;
}

@keyframes pulse-timer-b-nr1youb6kh {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.timer-text[b-nr1youb6kh] {
    font-size: 1.25rem;
    font-weight: 700;
}

.progress-bar-container[b-nr1youb6kh] {
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
}

.progress-bar-fill[b-nr1youb6kh] {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    transition: width 0.5s ease-out;
}

[b-nr1youb6kh] .options-grid {
    display: grid;
    gap: 1rem;
}

[b-nr1youb6kh] .option-item {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

[b-nr1youb6kh] .option-item:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

[b-nr1youb6kh] .option-item.selected {
    background: rgba(59, 130, 246, 0.1) !important;
    border-color: #3b82f6 !important;
}

[b-nr1youb6kh] .option-check {
    margin-right: 1.25rem;
    font-size: 1.25rem;
    color: #3b82f6 !important;
}

[b-nr1youb6kh] .check-circle {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50%;
}

[b-nr1youb6kh] .option-text {
    font-size: 1.1rem;
    color: #e2e8f0 !important;
    white-space: pre-wrap;
}

[b-nr1youb6kh] .glass-input {
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
    border-radius: 12px;
}

[b-nr1youb6kh] .glass-input:focus {
    background: rgba(0, 0, 0, 0.3) !important;
    border-color: #3b82f6 !important;
    color: #fff !important;
    box-shadow: none !important;
}

[b-nr1youb6kh] .question-nav-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

[b-nr1youb6kh] .nav-dot {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px;
    color: #94a3b8 !important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

[b-nr1youb6kh] .nav-dot.answered {
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: #10b981 !important;
    color: #10b981 !important;
}

[b-nr1youb6kh] .nav-dot.current {
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5) !important;
    background: #3b82f6 !important;
    border-color: #3b82f6 !important;
    color: #fff !important;
}

.confirm-icon[b-nr1youb6kh] {
    font-size: 4rem;
    line-height: 1;
}

.glass-modal[b-nr1youb6kh] {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Document-Based Exam Specific Styles */
[b-nr1youb6kh] .upload-dropzone {
    border: 2px dashed rgba(255, 255, 255, 0.2) !important;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03) !important;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[b-nr1youb6kh] .upload-dropzone:hover {
    border-color: #3b82f6 !important;
    background: rgba(59, 130, 246, 0.05) !important;
    transform: translateY(-2px);
}

[b-nr1youb6kh] .upload-dropzone.uploading {
    border-color: #6366f1 !important;
    background: rgba(99, 102, 241, 0.05) !important;
}

[b-nr1youb6kh] .uploaded-list {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px;
}

[b-nr1youb6kh] .uploaded-item {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.2s ease;
}

[b-nr1youb6kh] .uploaded-item:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

[b-nr1youb6kh] .border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

[b-nr1youb6kh] .cursor-pointer {
    cursor: pointer;
}

/* Descriptive Question File Upload styling */
[b-nr1youb6kh] .question-file-upload {
    transition: all 0.3s ease;
}

[b-nr1youb6kh] .question-file-upload:hover {
    border-color: rgba(59, 130, 246, 0.4) !important;
    background: rgba(59, 130, 246, 0.03) !important;
}

/* Fallback high-contrast text color for native input elements */
[b-nr1youb6kh] input[type="file"] {
    color: #f8fafc !important;
}
/* /Components/Shared/ImageEditor.razor.rz.scp.css */
.image-editor-overlay[b-vciwao7li1] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-editor-container[b-vciwao7li1] {
    width: 90%;
    max-width: 800px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.editor-header[b-vciwao7li1] {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.editor-body[b-vciwao7li1] {
    padding: 20px;
    background: #000;
    min-height: 400px;
    max-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-container[b-vciwao7li1] {
    max-height: 100%;
    width: 100%;
}

.editor-footer[b-vciwao7li1] {
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-group-sm > .btn[b-vciwao7li1] {
    padding: 0.5rem 0.75rem;
}
/* /Components/Shared/RichTextEditor.razor.rz.scp.css */

.rich-text-editor-wrapper[b-20mshucdvq] {
    display: flex;
    flex-direction: column;
    position: relative; /* For button placement */
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Maximize button */
.btn-maximize[b-20mshucdvq] {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 100; /* Higher than toolbar */
}

/* RTL support for button */
:global([dir="rtl"]) .btn-maximize[b-20mshucdvq] {
    right: auto;
    left: 5px;
}

/* Normal mode */
.rich-text-editor-wrapper:not(.fullscreen)[b-20mshucdvq] {
    resize: vertical;
    overflow: hidden; /* Needed for resize handle */
    min-height: 300px;
    height: 400px;
}

/* Fullscreen mode */
.rich-text-editor-wrapper.fullscreen[b-20mshucdvq] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1050;
    border: none;
    resize: none;
    border-radius: 0;
}

/* Quill Toolbar overrides */
.rich-text-editor-wrapper[b-20mshucdvq]  .ql-toolbar {
    border: none !important;
    border-bottom: 1px solid #ccc !important;
    flex-shrink: 0;
    padding-right: 40px; /* Space for maximize button */
}

/* Quill Container overrides */
.rich-text-editor-wrapper[b-20mshucdvq]  .ql-container {
    border: none !important;
    flex-grow: 1;
    overflow-y: auto;
    height: auto !important; /* Override inline style */
}

/* RTL toolbar padding adjustment */
:global([dir="rtl"]) .rich-text-editor-wrapper[b-20mshucdvq]  .ql-toolbar {
    padding-right: 8px;
    padding-left: 40px;
}
/* /Components/Shared/SearchableSelect.razor.rz.scp.css */
.searchable-select-backdrop[b-jf0tbluk54] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 1050;
}

.searchable-select-trigger[b-jf0tbluk54] {
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.searchable-select-trigger.open[b-jf0tbluk54] {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.searchable-select-options[b-jf0tbluk54]::-webkit-scrollbar {
    width: 6px;
}

.searchable-select-options[b-jf0tbluk54]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.searchable-select-options[b-jf0tbluk54]::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.searchable-select-options[b-jf0tbluk54]::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.hover-bg-light:hover[b-jf0tbluk54] {
    background-color: #f8f9fa;
    color: #212529;
}

.searchable-select-option.selected[b-jf0tbluk54] {
    font-weight: 500;
}
/* /Pages/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand[b-eo8f5ooh8q] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a[b-eo8f5ooh8q] {
  color: #0077cc;
}

.btn-primary[b-eo8f5ooh8q] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active[b-eo8f5ooh8q], .nav-pills .show > .nav-link[b-eo8f5ooh8q] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-eo8f5ooh8q] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-eo8f5ooh8q] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-eo8f5ooh8q] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-eo8f5ooh8q] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-eo8f5ooh8q] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
