/* /Components/GenericComponents/TreeViewTemplates/GrpcTreeViewTemplate/GrpcTreeViewTemplate.razor.rz.scp.css */
.tree-container[b-fxu2wugf1l] {
    padding: 1rem;
    border: 1px solid var(--mud-palette-divider);
    border-radius: 8px;
    background-color: var(--mud-palette-surface);
}

.tree-container button[b-fxu2wugf1l] {
    margin-right: 1rem;
}

.tree-node[b-fxu2wugf1l] {
    cursor: pointer;
    padding: 0.5rem;
    border-bottom: 1px solid var(--mud-palette-divider);
    background-color: var(--mud-palette-surface);
    color: var(--mud-palette-info);
}

    .tree-node:hover[b-fxu2wugf1l] {
        background-color: var(--mud-palette-tertiary);
        color: var(--mud-palette-primary-text);
    }

.ExpandCollapseStyling[b-fxu2wugf1l] {
    text-decoration: underline;
    font-weight: bold;
    color: var(--mud-palette-info);
}

.tree-loader-container[b-fxu2wugf1l] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    padding: 2rem;
    border-radius: 8px;
    border: 1px dashed var(--mud-palette-divider);
    transition: all 0.3s ease-in-out;
}
/* /Components/GenericComponents/TreeViewTemplates/GrpcTreeViewTemplate/TreeNodeComponent/TreeNodeComponent.razor.rz.scp.css */
.tree-node[b-gw51hcefwd] {
    cursor: pointer;
    margin: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-left: 1px solid var(--mud-palette-secondary);
    position: relative; /* Ensure positioning context for relative children */
    padding: 0.5rem;
    border: 1px solid var(--mud-palette-divider);
    border-radius: 5px;
    margin-bottom: 0.5rem;
    background-color: var(--mud-palette-surface);
    color: var(--mud-palette-info);
}

    .tree-node .body-container[b-gw51hcefwd] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .tree-node .justify-self-start[b-gw51hcefwd] {
        justify-self: start;
    }

    .tree-node .justify-self-end[b-gw51hcefwd] {
        justify-self: end;
    }

    .tree-node:hover[b-gw51hcefwd] {
        background-color: var(--mud-palette-tertiary);
        color: var(--mud-palette-primary-text);
    }

.gear-icon[b-gw51hcefwd] {
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-right: 0;
    color: var(--mud-palette-primary-text);
}

    .gear-icon.expanded[b-gw51hcefwd] {
        margin-right: 5px;
        color: var(--mud-palette-primary-text); /* Highlight when expanded */
    }

    .gear-icon.rotate[b-gw51hcefwd] {
        transition: transform 0.3s ease;
    }

    .gear-icon.expanded.rotate[b-gw51hcefwd] {
        transform: rotate(90deg);
    }

.menu-container[b-gw51hcefwd] {
    display: flex;
    align-items: center;
    position: relative;
    right: 5px;
    top: 50%;
    gap: 0.5rem;
}

.menu[b-gw51hcefwd] {
    display: none;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

    .menu.show[b-gw51hcefwd] {
        display: inline-flex;
        opacity: 1;
    }

    .menu .mud-icon-button[b-gw51hcefwd] {
        transition: transform 0.2s;
        color: var(--mud-palette-primary-text);
    }

.expanded[b-gw51hcefwd] {
    color: var(--mud-palette-info);
}

.collapsed[b-gw51hcefwd] {
    color: var(--mud-palette-info);
}
/* /Dialogs/Paper/PaperSummary/SummaryDialog.razor.rz.scp.css */
.circle-number[b-vm3fasf085] {
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* /Pages/Dashboard/Dashboard.razor.rz.scp.css */

/* Main Container */
.dashboard-container[b-m0zulcem4r] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Page Title */
.page-title[b-m0zulcem4r] {
    text-align: center;
    margin-bottom: 50px;
}

    .page-title h3[b-m0zulcem4r] {
        font-size: 32px;
        font-weight: 600;
        color: var(--mud-palette-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

/* Statistics Cards - Theme Adaptive */
.stats-section[b-m0zulcem4r] {
    margin-bottom: 40px;
}

.stats-card[b-m0zulcem4r] {
    background: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    min-height: 140px;
    max-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .stats-card:hover[b-m0zulcem4r] {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px var(--mud-palette-primary-hover);
        border-color: var(--mud-palette-primary);
    }

/* Dark mode specific styles */
.mud-theme-dark .stats-card[b-m0zulcem4r] {
    background: linear-gradient(145deg, #1e293b, #334155);
    border-color: #475569;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

    .mud-theme-dark .stats-card:hover[b-m0zulcem4r] {
        box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
        border-color: #64748b;
        background: linear-gradient(145deg, #334155, #475569);
    }

/* Light mode specific styles */
.mud-theme-light .stats-card[b-m0zulcem4r] {
    background: white;
    border-color: #e2e8f0;
}

    .mud-theme-light .stats-card:hover[b-m0zulcem4r] {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

.stats-icon-circle[b-m0zulcem4r] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

    .stats-icon-circle.blue[b-m0zulcem4r] {
        background-color: rgba(59, 130, 246, 0.15);
    }

    .stats-icon-circle.orange[b-m0zulcem4r] {
        background-color: rgba(249, 115, 22, 0.15);
    }

    .stats-icon-circle.purple[b-m0zulcem4r] {
        background-color: rgba(168, 85, 247, 0.15);
    }

    .stats-icon-circle.green[b-m0zulcem4r] {
        background-color: rgba(34, 197, 94, 0.15);
    }

    .stats-icon-circle.teal[b-m0zulcem4r] {
        background-color: rgba(20, 184, 166, 0.15);
    }

/* Light mode icon circles - more vibrant */
.mud-theme-light .stats-icon-circle.blue[b-m0zulcem4r] {
    background-color: #E3F2FD;
}

.mud-theme-light .stats-icon-circle.orange[b-m0zulcem4r] {
    background-color: #FFF3E0;
}

.mud-theme-light .stats-icon-circle.purple[b-m0zulcem4r] {
    background-color: #F3E5F5;
}

.mud-theme-light .stats-icon-circle.green[b-m0zulcem4r] {
    background-color: #E8F5E9;
}

.mud-theme-light .stats-icon-circle.teal[b-m0zulcem4r] {
    background-color: #E0F2F1;
}

.stats-value[b-m0zulcem4r] {
    color: var(--mud-palette-text-primary);
    line-height: 1;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

.stats-label[b-m0zulcem4r] {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--mud-palette-text-primary);
}

/* Quick Actions Section - Theme Adaptive */
.quick-actions-section[b-m0zulcem4r] {
    margin-top: 22px;
}

.action-card[b-m0zulcem4r] {
    background: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .action-card:hover[b-m0zulcem4r] {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px var(--mud-palette-primary-hover);
        border-color: var(--mud-palette-primary);
    }

/* Dark mode action cards */
.mud-theme-dark .action-card[b-m0zulcem4r] {
    background: linear-gradient(145deg, #1e293b, #334155);
    border-color: #475569;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

    .mud-theme-dark .action-card:hover[b-m0zulcem4r] {
        box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
        border-color: #64748b;
        background: linear-gradient(145deg, #334155, #475569);
    }

/* Light mode action cards */
.mud-theme-light .action-card[b-m0zulcem4r] {
    background: white;
    border-color: #e2e8f0;
}

    .mud-theme-light .action-card:hover[b-m0zulcem4r] {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

.action-icon-circle[b-m0zulcem4r] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .action-icon-circle.blue[b-m0zulcem4r] {
        background-color: rgba(59, 130, 246, 0.15);
    }

    .action-icon-circle.orange[b-m0zulcem4r] {
        background-color: rgba(249, 115, 22, 0.15);
    }

    .action-icon-circle.purple[b-m0zulcem4r] {
        background-color: rgba(168, 85, 247, 0.15);
    }

    .action-icon-circle.green[b-m0zulcem4r] {
        background-color: rgba(34, 197, 94, 0.15);
    }

    .action-icon-circle.teal[b-m0zulcem4r] {
        background-color: rgba(20, 184, 166, 0.15);
    }

    .action-icon-circle.grey[b-m0zulcem4r] {
        background-color: rgba(148, 163, 184, 0.15);
    }

/* Light mode action icon circles */
.mud-theme-light .action-icon-circle.blue[b-m0zulcem4r] {
    background-color: #E3F2FD;
}

.mud-theme-light .action-icon-circle.orange[b-m0zulcem4r] {
    background-color: #FFF3E0;
}

.mud-theme-light .action-icon-circle.purple[b-m0zulcem4r] {
    background-color: #F3E5F5;
}

.mud-theme-light .action-icon-circle.green[b-m0zulcem4r] {
    background-color: #E8F5E9;
}

.mud-theme-light .action-icon-circle.teal[b-m0zulcem4r] {
    background-color: #E0F2F1;
}

.mud-theme-light .action-icon-circle.grey[b-m0zulcem4r] {
    background-color: #F5F5F5;
}

.action-title[b-m0zulcem4r] {
    font-size: 19px;
    font-weight: 600;
    color: var(--mud-palette-text-primary);
    margin-bottom: 8px;
}

.action-description[b-m0zulcem4r] {
    font-size: 14px;
    color: var(--mud-palette-text-secondary);
    line-height: 1.5;
}

/* RTL Support */
[dir="rtl"] .page-title h3[b-m0zulcem4r] {
    flex-direction: row-reverse;
}

/* Quick Actions Header - Theme Adaptive */
.quick-actions-header[b-m0zulcem4r] {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 0px;
}

    .quick-actions-header:hover[b-m0zulcem4r] {
        background: rgba(59, 130, 246, 0.2);
        border-color: rgba(59, 130, 246, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    }

/* Light mode quick actions header */
.mud-theme-light .quick-actions-header[b-m0zulcem4r] {
    background: #f0f7ff;
    border-color: #c7ddff;
}

    .mud-theme-light .quick-actions-header:hover[b-m0zulcem4r] {
        background: #e1efff;
        border-color: #7bb3ff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

.icon-wrapper[b-m0zulcem4r] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mud-theme-light .icon-wrapper[b-m0zulcem4r] {
    background: linear-gradient(135deg, #2f80ed, #1c63c7);
}

.icon-wrapper svg[b-m0zulcem4r] {
    fill: white !important;
}

.quick-actions-title[b-m0zulcem4r] {
    font-size: 20px;
    font-weight: 600;
    color: var(--mud-palette-text-primary);
    margin: 0;
}

.mud-theme-light .quick-actions-title[b-m0zulcem4r] {
    color: #1a1a1a;
}

.mud-theme-dark .quick-actions-title[b-m0zulcem4r] {
    color: #f1f5f9;
}

.stats-header[b-m0zulcem4r] {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 8px;
}
/* /Pages/ItemBank/AddItemBank.razor.rz.scp.css */
@media (max-width: 959px) {
    .responsive-card[b-vvau9wcp5e] {
        width: 100% !important;
        margin: 5px !important;
    }
}
/* /Pages/Paper/Block/CreateNewBlock.razor.rz.scp.css */
.custom-scroll-box[b-co034gcrtv] {
    flex: 1;
    overflow-y: auto;
    min-height: 250px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 10px;
}

.custom-scroll-box-2[b-co034gcrtv] {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}
/* /Pages/Paper/Main/PaperCreationOrUpdateStepper/MainComponent/PaperStepper.razor.rz.scp.css */
.stepper-header[b-abqgt142dc] {
    position: sticky; 
    top: 0;
    z-index: 100;
    background: var(--mud-palette-surface);
}
/* /Pages/Paper/Main/PaperCreationOrUpdateStepper/ThirdStep/QuestionsSelection/ManualQuestionsSelection.razor.rz.scp.css */
.q3-table[b-1zijbny0ja] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width:800px) {
    .q3-table .mud-table-root table[b-1zijbny0ja] {
        min-width: 700px;
    }

    .q3-table td[data-label="Body"][b-1zijbny0ja] {
        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
/* /Shared/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-pjehbxacb9] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-pjehbxacb9] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-pjehbxacb9] {
    font-size: 1.1rem;
    color: #24275E;
}

.top-row[b-xq954xtyda][b-pjehbxacb9] {
    background-color: #fff;
}

.bi[b-pjehbxacb9] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-pjehbxacb9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-pjehbxacb9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-pjehbxacb9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-pjehbxacb9] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-pjehbxacb9] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-pjehbxacb9] {
        padding-bottom: 1rem;
    }

    .nav-item[b-pjehbxacb9]  a {
        color: #3a3b3c;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

        .nav-item[b-pjehbxacb9]  a.active {
            background-color: #1990ce;
            color: #fff;
        }

        .nav-item[b-pjehbxacb9]  a:hover {
            background-color: #f6f5ff;
            color: #1990ce;
        }

@media (min-width: 641px) {
    .navbar-toggler[b-pjehbxacb9] {
        display: none;
    }

    .collapse[b-pjehbxacb9] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-pjehbxacb9] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
        border-radius: 5px;
    }
}
