/* /Components/RecentItemsCard.razor.rz.scp.css */
.recent-section .card[b-glh2zutcli] {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: box-shadow 0.15s ease-in-out;
}

.recent-section .card:hover[b-glh2zutcli] {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

.recent-section .list-group-item[b-glh2zutcli] {
    border-left: none;
    border-right: none;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

.recent-section .list-group-item:hover[b-glh2zutcli] {
    background-color: rgba(0, 123, 255, 0.05);
}

.recent-section .list-group-item:first-child[b-glh2zutcli] {
    border-top: none;
}

.recent-section .list-group-item:last-child[b-glh2zutcli] {
    border-bottom: none;
}

.recent-section .card-header[b-glh2zutcli] {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.recent-section .card-footer[b-glh2zutcli] {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}
/* /Components/SideBySide/AnalysisPanel.razor.rz.scp.css */
.analysis-panel[b-6u2lw84d6f] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.panel-header[b-6u2lw84d6f] {
    padding: 20px 20px 0 20px;
    border-bottom: none;
}

.panel-title[b-6u2lw84d6f] {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.panel-body[b-6u2lw84d6f] {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.summary-table[b-6u2lw84d6f] {
    flex: 1;
    margin-bottom: 20px;
}

.summary-section[b-6u2lw84d6f] {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.summary-section:last-child[b-6u2lw84d6f] {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-row[b-6u2lw84d6f] {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.summary-row:last-child[b-6u2lw84d6f] {
    border-bottom: none;
}

.analysis-panel .summary-label[b-6u2lw84d6f] {
    color: grey;
    font-size: 14px;
    font-weight: 400;
}

.summary-value[b-6u2lw84d6f] {
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.action-buttons[b-6u2lw84d6f] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.view-cases-btn[b-6u2lw84d6f],
.begin-resolving-btn[b-6u2lw84d6f],
.certification-btn[b-6u2lw84d6f] {
    background-color: #0D3C5A;
    border: none;
    color: white;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.view-cases-btn:hover[b-6u2lw84d6f],
.begin-resolving-btn:hover[b-6u2lw84d6f],
.certification-btn:hover[b-6u2lw84d6f] {
    background-color: #0a2f47;
    color: white;
}
/* /Components/SideBySide/CommitChangesModal.razor.rz.scp.css */
/* Commit Modal Styles */
.modal-backdrop[b-zlqids8n10] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
}

.commit-modal[b-zlqids8n10] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header[b-zlqids8n10] {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.modal-title[b-zlqids8n10] {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.btn-close[b-zlqids8n10] {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close:hover[b-zlqids8n10] {
    color: #333;
}

.btn-close[b-zlqids8n10]::before {
    content: "×";
}

.modal-body[b-zlqids8n10] {
    padding: 24px;
    flex: 1;
    overflow-y: auto;
}

.changes-summary[b-zlqids8n10] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.change-item[b-zlqids8n10] {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 16px;
    background: #fafafa;
}

.change-header[b-zlqids8n10] {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.change-details[b-zlqids8n10] {
    margin-left: 0;
}

.action-badge[b-zlqids8n10] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.action-badge.selected[b-zlqids8n10] {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.action-badge.ignored[b-zlqids8n10] {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.selected-doc[b-zlqids8n10] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 12px;
}

.selected-doc div[b-zlqids8n10] {
    margin-bottom: 4px;
}

.selected-doc div:last-child[b-zlqids8n10] {
    margin-bottom: 0;
}

.ignored-message[b-zlqids8n10] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 12px;
    color: #666;
    font-style: italic;
}

.modal-footer[b-zlqids8n10] {
    padding: 20px 24px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: #f8f9fa;
}

.modal-footer .btn[b-zlqids8n10] {
    padding: 8px 20px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .commit-modal[b-zlqids8n10] {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header[b-zlqids8n10],
    .modal-body[b-zlqids8n10],
    .modal-footer[b-zlqids8n10] {
        padding: 16px;
    }
    
    .modal-footer[b-zlqids8n10] {
        flex-direction: column;
    }
    
    .modal-footer .btn[b-zlqids8n10] {
        width: 100%;
    }
}
/* /Components/SideBySide/DocumentPagination.razor.rz.scp.css */
.pagination[b-ydl876yret] {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 0.875rem;
    --bs-pagination-color: var(--bs-link-color);
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: 1px;
    --bs-pagination-border-color: var(--bs-border-color);
    --bs-pagination-border-radius: 0.375rem;
    --bs-pagination-hover-color: var(--bs-link-hover-color);
    --bs-pagination-hover-bg: var(--bs-tertiary-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: var(--bs-link-hover-color);
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: #0d6efd;
    --bs-pagination-active-border-color: #0d6efd;
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
}

.page-link[b-ydl876yret] {
    min-width: 2.5rem;
    text-align: center;
    border: none;
    background: transparent;
}

.page-link:hover[b-ydl876yret] {
    background-color: var(--bs-pagination-hover-bg);
}

.page-item.active .page-link[b-ydl876yret] {
    background-color: var(--bs-pagination-active-bg);
    border-color: var(--bs-pagination-active-border-color);
    color: var(--bs-pagination-active-color);
}

.page-item.disabled .page-link[b-ydl876yret] {
    color: var(--bs-pagination-disabled-color);
    background-color: var(--bs-pagination-disabled-bg);
    cursor: not-allowed;
}
/* /Components/SideBySide/DocumentViewerPanel.razor.rz.scp.css */
.card[b-5yq2yzd7ag] {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.display-4[b-5yq2yzd7ag] {
    font-size: 2.5rem;
}
/* /Components/SideBySide/ResolvePanel.razor.rz.scp.css */
.resolve-panel[b-m845c36dx0] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.panel-header[b-m845c36dx0] {
    padding: 20px 20px 0 20px;
    border-bottom: 1px solid #e5e5e5;
}

.panel-title[b-m845c36dx0] {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.navigation-controls[b-m845c36dx0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.page-indicator[b-m845c36dx0] {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.panel-body[b-m845c36dx0] {
    padding: 0 20px 20px 20px;
    flex: 1;
    overflow-y: auto;
}

.panel-footer[b-m845c36dx0] {
    padding: 15px 20px;
    border-top: 1px solid #e5e5e5;
    background-color: #f8f9fa;
}

/* Section Styles */
.identifier-info-section[b-m845c36dx0],
.found-docs-section[b-m845c36dx0],
.action-buttons-section[b-m845c36dx0] {
    margin-bottom: 25px;
}

.section-title[b-m845c36dx0] {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e9ecef;
}

/* Identifier Info Grid */
.info-grid[b-m845c36dx0] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-row[b-m845c36dx0] {
    display: flex;
    align-items: flex-start;
    padding: 4px 0;
}

.info-label[b-m845c36dx0] {
    font-weight: 500;
    color: #666;
    min-width: 120px;
    flex-shrink: 0;
}

.info-value[b-m845c36dx0] {
    color: #333;
    word-break: break-word;
    flex: 1;
}

/* Found Documents */
.found-docs-list[b-m845c36dx0] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.found-doc-item[b-m845c36dx0] {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 15px;
    background: #f8f9fa;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.found-doc-item:hover[b-m845c36dx0] {
    background: #e9ecef;
    border-color: #ced4da;
}

.found-doc-item.selected[b-m845c36dx0] {
    background: #dee2e6;
    border-color: #6c757d;
    box-shadow: 0 0 0 2px rgba(108, 117, 125, 0.2);
}

.found-doc-selection[b-m845c36dx0] {
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.found-doc-selection input[type="radio"][b-m845c36dx0] {
    margin: 0;
    width: 16px;
    height: 16px;
    pointer-events: none; /* Radio button itself is not clickable, panel click handles it */
}

.found-doc-info[b-m845c36dx0] {
    flex: 1;
}

.found-doc-title[b-m845c36dx0] {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.found-doc-details[b-m845c36dx0] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-item[b-m845c36dx0] {
    font-size: 13px;
    color: #666;
}

.view-case-btn[b-m845c36dx0] {
    white-space: nowrap;
    align-self: flex-start;
    z-index: 1;
    position: relative;
}

.no-docs-message[b-m845c36dx0] {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
}

/* Action Buttons */
.action-buttons-fixed[b-m845c36dx0] {
    position: sticky;
    top: 0;
    z-index: 10;
    background: white;
    padding: 15px 20px;
    margin: 0 -20px 20px -20px;
    border-bottom: 2px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.action-buttons[b-m845c36dx0] {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.add-selection-btn[b-m845c36dx0],
.ignore-btn[b-m845c36dx0],
.remove-btn[b-m845c36dx0],
.undo-btn[b-m845c36dx0],
.commit-btn[b-m845c36dx0] {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.add-selection-btn[b-m845c36dx0],
.ignore-btn[b-m845c36dx0],
.remove-btn[b-m845c36dx0],
.undo-btn[b-m845c36dx0] {
    background-color: white;
    border-color: #212529;
    color: #212529;
}

.add-selection-btn:hover[b-m845c36dx0],
.ignore-btn:hover[b-m845c36dx0],
.remove-btn:hover[b-m845c36dx0],
.undo-btn:hover[b-m845c36dx0] {
    background-color: #0D3C5A;
    border-color: #0D3C5A;
    color: white;
}

.commit-btn[b-m845c36dx0] {
    border-color: #0d6efd;
    color: white;
    background-color: #0d6efd;
}

/* No Identifiers Message */
.no-identifiers-message[b-m845c36dx0] {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-identifiers-message h6[b-m845c36dx0] {
    color: #333;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .found-doc-item[b-m845c36dx0] {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .found-doc-selection[b-m845c36dx0] {
        align-self: flex-start;
    }
    
    .navigation-controls[b-m845c36dx0] {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .info-row[b-m845c36dx0] {
        flex-direction: column;
        gap: 4px;
    }
    
    .info-label[b-m845c36dx0] {
        min-width: auto;
    }
}

/* Commit Panel Styles */
.commit-panel[b-m845c36dx0] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 12px 16px;
    margin: 10px 0 5px 0;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.commit-btn[b-m845c36dx0] {
    background: #0d6efd;
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.commit-btn:hover[b-m845c36dx0] {
    background: #0b5ed7;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.3);
}

.commit-btn:active[b-m845c36dx0] {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
/* /Components/SideBySide/ViewCitedCasesPanel.razor.rz.scp.css */
/* ViewCitedCasesPanel.razor.css */

.cited-cases-panel[b-pz2rk9mu6p] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.panel-header[b-pz2rk9mu6p] {
    padding: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
    background-color: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.panel-title[b-pz2rk9mu6p] {
    margin: 0 0 1rem 0;
    font-weight: 600;
    color: #333;
    font-size: 1.25rem;
}

.navigation-controls[b-pz2rk9mu6p] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.navigation-controls .btn[b-pz2rk9mu6p] {
    min-width: 90px;
}

.page-indicator[b-pz2rk9mu6p] {
    font-weight: 500;
    color: #666;
    font-size: 0.9rem;
}

.panel-body[b-pz2rk9mu6p] {
    flex: 1;
    overflow: hidden;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.identifier-info-section[b-pz2rk9mu6p] {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    flex-shrink: 0;
}

.section-title[b-pz2rk9mu6p] {
    font-weight: 600;
    color: #495057;
    margin-bottom: 1rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-grid[b-pz2rk9mu6p] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-row[b-pz2rk9mu6p] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label[b-pz2rk9mu6p] {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.85rem;
}

.info-value[b-pz2rk9mu6p] {
    color: #333;
    font-size: 0.95rem;
    word-break: break-word;
}

.case-viewer-section[b-pz2rk9mu6p] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.case-iframe-container[b-pz2rk9mu6p] {
    width: 100%;
    flex: 1;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
}

.case-iframe[b-pz2rk9mu6p] {
    width: 100%;
    height: 100%;
    border: none;
}

.loading-container[b-pz2rk9mu6p] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.loading-container p[b-pz2rk9mu6p] {
    margin-top: 1rem;
    color: #6c757d;
}

.no-case-message[b-pz2rk9mu6p],
.no-identifiers-message[b-pz2rk9mu6p] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.no-case-message p[b-pz2rk9mu6p],
.no-identifiers-message p[b-pz2rk9mu6p] {
    color: #6c757d;
    margin: 0;
}

.no-identifiers-message h6[b-pz2rk9mu6p] {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.panel-footer[b-pz2rk9mu6p] {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e0e0e0;
    background-color: #f8f9fa;
    border-radius: 0 0 8px 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .case-iframe-container[b-pz2rk9mu6p] {
        height: 400px;
    }
    
    .navigation-controls[b-pz2rk9mu6p] {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .navigation-controls .btn[b-pz2rk9mu6p] {
        width: 100%;
    }
}
/* /Layout/Footer.razor.rz.scp.css */
.footer[b-7j4aqcn42x] {
    margin-top: auto;
    border-top: 1px solid #dee2e6;
}

.footer .container-fluid[b-7j4aqcn42x] {
    padding-left: 2rem;
    padding-right: 2rem;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page-wrapper[b-6cpugq1800] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content[b-6cpugq1800] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content[b-6cpugq1800] {
    flex: 1;
}

.page[b-6cpugq1800] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-6cpugq1800] {
    flex: 1;
}

.sidebar[b-6cpugq1800] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-6cpugq1800] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-6cpugq1800]  a, .top-row[b-6cpugq1800]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-6cpugq1800]  a:hover, .top-row[b-6cpugq1800]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-6cpugq1800]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-6cpugq1800] {
        justify-content: space-between;
    }

    .top-row[b-6cpugq1800]  a, .top-row[b-6cpugq1800]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-6cpugq1800] {
        flex-direction: row;
    }

    .sidebar[b-6cpugq1800] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-6cpugq1800] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-6cpugq1800]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-6cpugq1800], article[b-6cpugq1800] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* Custom navbar styling for Beyond Assured */
.navbar[b-w0pnsnbwpy] {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid rgba(0,0,0,0.1);
}

.bg-ba[b-w0pnsnbwpy] {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%) !important;
}

.navbar-brand[b-w0pnsnbwpy] {
    font-weight: 600;
    font-size: 1.4rem;
    color: #ffffff !important;
    text-decoration: none;
}

.navbar-brand:hover[b-w0pnsnbwpy] {
    color: #e2e8f0 !important;
}

.nav-link[b-w0pnsnbwpy] {
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    border-radius: 0.375rem;
    margin: 0 0.2rem;
    transition: all 0.3s ease;
    color: #e2e8f0 !important;
}

.nav-link:hover[b-w0pnsnbwpy] {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    transform: translateY(-1px);
}

.nav-link.active[b-w0pnsnbwpy] {
    background-color: #0d6efd;
    color: #ffffff !important;
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.3);
}

.nav-link span[b-w0pnsnbwpy] {
    margin-right: 0.5rem;
}

/* Navbar toggler styling */
.navbar-toggler[b-w0pnsnbwpy] {
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0.375rem 0.75rem;
}

.navbar-toggler:focus[b-w0pnsnbwpy] {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon[b-w0pnsnbwpy] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile responsiveness */
@media (max-width: 991.98px) {
    .navbar-collapse[b-w0pnsnbwpy] {
        background-color: rgba(31, 41, 55, 0.95);
        border-radius: 0.5rem;
        margin-top: 0.5rem;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link[b-w0pnsnbwpy] {
        margin: 0.25rem 0;
        text-align: center;
    }
}

/* Animation for navbar collapse */
.navbar-collapse.collapsing[b-w0pnsnbwpy] {
    transition: height 0.35s ease;
}

.navbar-collapse.show[b-w0pnsnbwpy] {
    animation: slideDown-b-w0pnsnbwpy 0.3s ease-out;
}

@keyframes slideDown-b-w0pnsnbwpy {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/About/About.razor.rz.scp.css */
.about-page-container[b-cld6xri7p9] {
    padding: 2rem 1rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-card[b-cld6xri7p9] {
    background-color: #ffffff;
    border-radius: 0.75rem;
    max-width: 900px;
    width: 100%;
    padding: 2rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about-title[b-cld6xri7p9] {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #002d5a;
}

.about-subtitle[b-cld6xri7p9] {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.about-text[b-cld6xri7p9] {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .about-card[b-cld6xri7p9] {
        padding: 1.5rem 1.5rem;
    }
}
/* /Pages/Admin/Admin.razor.rz.scp.css */
.card[b-qo9819xooc] {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: box-shadow 0.15s ease-in-out;
}

.card:hover[b-qo9819xooc] {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.display-1[b-qo9819xooc] {
    font-size: 6rem;
}

.display-4[b-qo9819xooc] {
    font-size: 2.5rem;
}
/* /Pages/Authentication/Authentication.razor.rz.scp.css */
/* No specific styles needed for Authentication component */
/* /Pages/Briefs/Briefs.razor.rz.scp.css */
.breadcrumb[b-udt4iupxos] {
    background-color: transparent;
    padding: 0;
}

.card[b-udt4iupxos] {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.table th[b-udt4iupxos] {
    border-top: none;
    font-weight: 600;
    color: #495057;
    background-color: #f8f9fa;
}

.table-hover tbody tr:hover[b-udt4iupxos] {
    background-color: rgba(0, 123, 255, 0.05);
}

.btn-group .btn[b-udt4iupxos] {
    border-radius: 0.25rem;
    margin-right: 0.25rem;
}

.btn-group .btn:last-child[b-udt4iupxos] {
    margin-right: 0;
}

.display-4[b-udt4iupxos] {
    font-size: 3.5rem;
}

.btn-primary[b-udt4iupxos] {
    color: #fff;
    background-color: #0D3C5A;
}
/* /Pages/Briefs/UploadBrief.razor.rz.scp.css */

.upload-page-container[b-znspjto7mq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 3rem;
    background-color: #ffffff;
}

.upload-title[b-znspjto7mq] {
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    color: #00325a;
}

.upload-card[b-znspjto7mq] {
    background-color: #00325a;
    color: #ffffff;
    width: 100%;
    max-width: 750px;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

.or-divider span[b-znspjto7mq] {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
}

.fake-disabled[b-znspjto7mq] {
    opacity: 0.6;
    cursor: not-allowed;
}

.upload-card-header[b-znspjto7mq] {
    padding: 1.5rem 2rem 0.5rem;
    border-bottom: none;
}

    .upload-card-header h5[b-znspjto7mq] {
        margin: 0;
        font-weight: 600;
    }

.upload-card-body[b-znspjto7mq] {
    padding: 0.5rem 2rem 1.5rem;
}

.upload-card-footer[b-znspjto7mq] {
    padding: 1rem 2rem 1.5rem;
    border-top: none;
}

.upload-card .form-label[b-znspjto7mq] {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.upload-card .form-control[b-znspjto7mq],
.upload-card .form-select[b-znspjto7mq] {
    border-radius: 0.35rem;
    border: 1px solid #d9d9d9;
    font-size: 0.9rem;
}

    .upload-card .form-control:focus[b-znspjto7mq],
    .upload-card .form-select:focus[b-znspjto7mq] {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.2);
        border-color: #ffffff;
    }

.upload-browse-btn[b-znspjto7mq] {
    font-weight: 600;
    padding: 0.4rem 1.5rem;
    border-radius: 0.35rem;
}

.upload-file-text[b-znspjto7mq] {
    font-size: 0.9rem;
}

.upload-next-btn[b-znspjto7mq] {
    font-weight: 600;
    padding: 0.4rem 1.5rem;
}


    .upload-next-btn:disabled[b-znspjto7mq] {
        opacity: 0.65;
        cursor: not-allowed;
    }

/* Responsive */
@media (max-width: 768px) {
    .upload-card-header[b-znspjto7mq],
    .upload-card-body[b-znspjto7mq],
    .upload-card-footer[b-znspjto7mq] {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .upload-page-container[b-znspjto7mq] {
        padding-top: 4rem;
    }
}
/* /Pages/Dashboard/Dashboard.razor.rz.scp.css */
.dashboard-container[b-5mavtenrk9] {
    min-height: calc(100vh - 200px);
    /*display: flex;*/
    flex-direction: column;
}

.hero-section[b-5mavtenrk9] {
    flex: 1;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    background: transparent;
    border-radius: 0;
    margin-bottom: 3rem;
}

.hero-content[b-5mavtenrk9] {
    max-width: 600px;
    padding: 2rem;
}

.logo-section[b-5mavtenrk9] {
    margin-bottom: 2rem;
}

.dashboard-logo[b-5mavtenrk9] {
    max-width: 550px; 
    height: auto;
}

@media (max-width: 768px) {
    .dashboard-logo[b-5mavtenrk9] {
        max-width: 350px;
    }
}

.recent-sections[b-5mavtenrk9] {
    border: 1px solid #000;
    border-radius: 8px;
    background: #fff;
    padding: 0.75rem;
}

.recent-card[b-5mavtenrk9] {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    background: #fff;
    padding: 0.75rem;
    box-shadow: none;
}

.section-title[b-5mavtenrk9] {
    color: #102e4e !important;
}

.hero-title[b-5mavtenrk9] {
    font-size: 3rem;
    font-weight: 700;
    color: #495057;
    letter-spacing: 0.1em;
    margin-top: 1rem;
}

.btn-upload[b-5mavtenrk9] {
    background: #0D3C5A !important;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 2rem;
    color: white;
    box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
}

    .btn-upload:hover[b-5mavtenrk9] {
        transform: translateY(-2px);
        box-shadow: 0 0.75rem 1.5rem rgba(13, 110, 253, 0.4);
        background-color: #0b3049 !important;
        color: white;
    }

    .btn-upload:active[b-5mavtenrk9] {
        transform: translateY(0);
        background-color: #0D3C5A !important;
    }



.recent-sections[b-5mavtenrk9] {
    margin-top: auto;
    padding-bottom: 2rem;
}

.display-1[b-5mavtenrk9] {
    font-size: 6rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-title[b-5mavtenrk9] {
        font-size: 2rem;
    }
    
    .display-1[b-5mavtenrk9] {
        font-size: 4rem;
    }
    
    .btn-upload[b-5mavtenrk9] {
        padding: 0.75rem 2rem;
        font-size: 1.1rem;
    }
    
    .recent-sections .col-lg-6[b-5mavtenrk9] {
        margin-bottom: 1rem;
    }
}
/* /Pages/DetailedReport/DetailedReport.razor.rz.scp.css */
.breadcrumb[b-bkt3vb9j4j] {
    background-color: transparent;
    padding: 0;
}

.display-1[b-bkt3vb9j4j] {
    font-size: 6rem;
}

@media print {
    .btn[b-bkt3vb9j4j],
    .breadcrumb[b-bkt3vb9j4j] {
        display: none !important;
    }
}
/* /Pages/Home/Home.razor.rz.scp.css */
.min-vh-100[b-gf5w9iyric] {
    min-height: 100vh;
}

.display-1[b-gf5w9iyric] {
    font-size: 6rem;
}

.card[b-gf5w9iyric] {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: box-shadow 0.15s ease-in-out;
}

.card:hover[b-gf5w9iyric] {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
/* /Pages/Matters/EditMatter.razor.rz.scp.css */
.newmatter .card[b-g1757apstg] {
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.newmatter .card-header[b-g1757apstg] {
    background: #f9fafb;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.newmatter .card-title[b-g1757apstg] {
    font-weight: 700;
    color: #0D3C5A;
}

/* inputs */
.newmatter .form-control[b-g1757apstg] {
    border: 1px solid rgba(0,0,0,.18);
    border-radius: 10px;
    padding: .75rem .9rem;
    transition: border-color .15s ease, box-shadow .15s ease;
}

    .newmatter .form-control:focus[b-g1757apstg] {
        border-color: #0D3C5A;
        box-shadow: 0 0 0 .2rem rgba(13,60,90,.15);
    }

/* buttons */
.newmatter .btn-primary[b-g1757apstg] {
    background-color: #0D3C5A;
    border: none;
    border-radius: 10px;
    font-weight: 600;
}

    .newmatter .btn-primary:hover[b-g1757apstg] {
        background-color: #0b3049;
    }

.btn-back[b-g1757apstg] {
    background-color: #0D3C5A !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    transition: all 0.25s ease-in-out;
}

    .btn-back:hover[b-g1757apstg] {
        background-color: #0b3049 !important;
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(13, 60, 90, 0.25);
    }

    .btn-back:active[b-g1757apstg] {
        transform: translateY(0);
        box-shadow: none;
    }

/* placeholder color and appearance */
[b-g1757apstg] input::placeholder,
[b-g1757apstg] textarea::placeholder {
    color: #9aa7b2;
    opacity: 1;
}

[b-g1757apstg] input:focus::placeholder,
[b-g1757apstg] textarea:focus::placeholder {
    opacity: .4;
}

/* general spacing */
.newmatter .container-fluid[b-g1757apstg] {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
/* /Pages/Matters/Matters.razor.rz.scp.css */
.table th[b-n6pv8i2pbg] {
    border-top: none;
    font-weight: 600;
    color: #495057;
    background-color: #f8f9fa;
}

.table-hover tbody tr:hover[b-n6pv8i2pbg] {
    background-color: rgba(0, 123, 255, 0.05);
}

.btn-group .btn[b-n6pv8i2pbg] {
    border-radius: 0.25rem;
    margin-right: 0.25rem;
}

.btn-group .btn:last-child[b-n6pv8i2pbg] {
    margin-right: 0;
}

.display-4[b-n6pv8i2pbg] {
    font-size: 3.5rem;
}

.btn-primary[b-n6pv8i2pbg] {
    background-color: #0D3C5A;
    border: none;
    border-radius: 10px;
    font-weight: 600;
}

    .btn-primary:hover[b-n6pv8i2pbg] {
        background-color: #0b3049;
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(13, 60, 90, 0.25);
    }

    .btn-primary:active[b-n6pv8i2pbg] {
        transform: translateY(0);
        box-shadow: none;
    }

.card-header[b-n6pv8i2pbg] {
    border-bottom: none !important;
}

    .card-header .card-title[b-n6pv8i2pbg] {
        font-weight: 700; 
    }
/* /Pages/Matters/NewMatter.razor.rz.scp.css */
.newmatter .card[b-0t498wh7nx] {
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.newmatter .card-header[b-0t498wh7nx] {
    background: #f9fafb;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.newmatter .card-title[b-0t498wh7nx] {
    font-weight: 700;
    color: #0D3C5A;
}

/* inputs */
.newmatter .form-control[b-0t498wh7nx] {
    border: 1px solid rgba(0,0,0,.18);
    border-radius: 10px;
    padding: .75rem .9rem;
    transition: border-color .15s ease, box-shadow .15s ease;
}

    .newmatter .form-control:focus[b-0t498wh7nx] {
        border-color: #0D3C5A;
        box-shadow: 0 0 0 .2rem rgba(13,60,90,.15);
    }

/* buttons */
.newmatter .btn-primary[b-0t498wh7nx] {
    background-color: #0D3C5A;
    border: none;
    border-radius: 10px;
    font-weight: 600;
}

    .newmatter .btn-primary:hover[b-0t498wh7nx] {
        background-color: #0b3049;
    }

.btn-back[b-0t498wh7nx] {
    background-color: #0D3C5A !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    transition: all 0.25s ease-in-out;
}

    .btn-back:hover[b-0t498wh7nx] {
        background-color: #0b3049 !important;
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(13, 60, 90, 0.25);
    }

    .btn-back:active[b-0t498wh7nx] {
        transform: translateY(0);
        box-shadow: none;
    }

/* placeholder color and appearance */
[b-0t498wh7nx] input::placeholder,
[b-0t498wh7nx] textarea::placeholder {
    color: #9aa7b2;
    opacity: 1;
}

[b-0t498wh7nx] input:focus::placeholder,
[b-0t498wh7nx] textarea:focus::placeholder {
    opacity: .4;
}

/* general spacing */
.newmatter .container-fluid[b-0t498wh7nx] {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
/* /Pages/SideBySide/SideBySide.razor.rz.scp.css */
.h-100[b-fjp64vhgzv] {
    height: calc(100vh - 200px) !important;
}

.card[b-fjp64vhgzv] {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.breadcrumb[b-fjp64vhgzv] {
    background-color: transparent;
    padding: 0;
}

.display-1[b-fjp64vhgzv] {
    font-size: 6rem;
}
/* /Pages/SummaryReport/CertificationReport.razor.rz.scp.css */
.certification-report-container[b-drc9x3za7o] {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    min-height: 100vh;
}

.loading-container[b-drc9x3za7o],
.error-container[b-drc9x3za7o] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
}

.report-header[b-drc9x3za7o] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.report-title[b-drc9x3za7o] {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.print-buttons[b-drc9x3za7o] {
    display: flex;
    gap: 1rem;
}

.print-btn[b-drc9x3za7o] {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border: 1px solid #6c757d;
    background-color: white;
    color: #6c757d;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.print-btn:hover[b-drc9x3za7o] {
    background-color: #f8f9fa;
    border-color: #5a6268;
}

.report-content[b-drc9x3za7o] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.report-section[b-drc9x3za7o] {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
}

.section-title[b-drc9x3za7o] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.subsection[b-drc9x3za7o] {
    margin-bottom: 2rem;
}

.subsection:last-child[b-drc9x3za7o] {
    margin-bottom: 0;
}

.subsection-title[b-drc9x3za7o] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dee2e6;
}

.citations-list[b-drc9x3za7o] {
    padding-left: 1rem;
}

.citation-item[b-drc9x3za7o] {
    padding: 0.5rem 0;
    color: #2c5aa0;
    font-weight: 600;
}

.no-citations[b-drc9x3za7o] {
    color: #6c757d;
    font-style: italic;
    margin: 0;
}

.detailed-citation[b-drc9x3za7o] {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.detailed-citation:last-child[b-drc9x3za7o] {
    margin-bottom: 0;
}

.citation-title[b-drc9x3za7o] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.citation-details[b-drc9x3za7o] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-row[b-drc9x3za7o] {
    display: flex;
    gap: 0.5rem;
}

.detail-label[b-drc9x3za7o] {
    font-weight: 600;
    color: #495057;
    min-width: 130px;
}

.detail-value[b-drc9x3za7o] {
    color: #2c3e50;
}

/* Print styles */
@media print {
    .print-buttons[b-drc9x3za7o] {
        display: none;
    }
    
    .certification-report-container[b-drc9x3za7o] {
        padding: 0;
    }
    
    .report-section[b-drc9x3za7o] {
        page-break-inside: avoid;
    }
}
/* /Pages/ViewLinkedCase/ViewLinkedCase.razor.rz.scp.css */
.view-linked-case[b-2d0siitmv1] {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.loading-container[b-2d0siitmv1],
.error-container[b-2d0siitmv1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
}

.case-header[b-2d0siitmv1] {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #dee2e6;
}

.case-title[b-2d0siitmv1] {
    font-size: 1.75rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
}

.case-metadata[b-2d0siitmv1] {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
}

.metadata-item[b-2d0siitmv1] {
    color: #495057;
}

.metadata-item strong[b-2d0siitmv1] {
    color: #212529;
    margin-right: 0.5rem;
}

.case-content[b-2d0siitmv1] {
    background: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.case-content[b-2d0siitmv1]  h1,
.case-content[b-2d0siitmv1]  h2,
.case-content[b-2d0siitmv1]  h3,
.case-content[b-2d0siitmv1]  h4,
.case-content[b-2d0siitmv1]  h5,
.case-content[b-2d0siitmv1]  h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.case-content[b-2d0siitmv1]  p {
    margin-bottom: 1rem;
}

.case-text[b-2d0siitmv1] {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #212529;
}

.no-content-message[b-2d0siitmv1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    text-align: center;
}

@media print {
    .view-linked-case[b-2d0siitmv1] {
        padding: 0;
    }

    .case-header[b-2d0siitmv1] {
        border-bottom-color: #000;
    }

    .case-content[b-2d0siitmv1] {
        box-shadow: none;
        padding: 0;
    }
}
