/* /Components/CommentBox.razor.rz.scp.css */
/* CommentBox.razor.css - Scoped styles to make the comment box fill its container */
.commentbox-root[b-vf8fq57khf] {
    width: 100% !important;
    height: 100% !important;
    display: flex;
    flex-direction: column;
}

.commentbox-root > .flex-1[b-vf8fq57khf] {
    flex: 1 1 auto;
}

.commentbox-root .overflow-y-auto[b-vf8fq57khf] {
    /* Ensure the comments list scrolls and occupies remaining space */
    overflow-y: auto;
}

.commentbox-root form[b-vf8fq57khf] {
    /* Ensure the form stays at the bottom and does not collapse */
    flex: 0 0 auto;
}

.commentbox-root textarea.comment-input[b-vf8fq57khf] {
    min-height: 80px;
}
/* /Components/CommentsList.razor.rz.scp.css */
.comment-item[b-oepsafe1gi] {
    animation: slideIn-b-oepsafe1gi 0.2s ease-out;
}

@keyframes slideIn-b-oepsafe1gi {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-delete-comment[b-oepsafe1gi] {
    transition: all 0.15s ease-in-out;
}

.btn-delete-comment:hover[b-oepsafe1gi] {
    transform: scale(1.1);
}

.btn-delete-comment:active[b-oepsafe1gi] {
    transform: scale(0.95);
}

.btn-delete-comment:disabled[b-oepsafe1gi] {
    opacity: 0.5;
    cursor: not-allowed;
}
/* /Components/DocumentSection.razor.rz.scp.css */
/* DocumentSection.razor.css - Scoped styles for unified editable/readonly document sections */

.section-with-comments[b-6n7p2674hi] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.section-tabs[b-6n7p2674hi] {
    background-color: transparent;
    border-bottom: 1px solid #d0d0d0;
}

.section-tab-header[b-6n7p2674hi] {
    display: flex;
    gap: 4px;
    padding: 0 16px;
    align-items: flex-end;
    overflow-x: auto;
}

.section-tab[b-6n7p2674hi] {
    padding: 12px 24px;
    border: none;
    background-color: #e8e8e8;
    cursor: pointer;
    font-size: 13px;
    border-radius: 4px 4px 0 0;
    color: #666;
    transition: background-color 0.2s ease, color 0.2s ease, border-bottom-color 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 2px solid transparent;
    margin-bottom: 0;
    font-weight: 500;
    text-align: center;
}

.section-tab:hover[b-6n7p2674hi] {
    background-color: #d0d0d0;
    color: #333;
}

.section-tab.active[b-6n7p2674hi] {
    background-color: #c8d5e3;
    font-weight: 600;
    color: #333;
    border-bottom-color: #0066cc;
    /* Slight lift so underline is visually distinct */
    transform: translateY(0);
}

.section-tab.published-tab[b-6n7p2674hi] {
    background-color: #e8e8e8;
    margin-right: 0;
}

.section-tab.published-tab.active[b-6n7p2674hi] {
    background-color: #c8d5e3;
    border-bottom-color: #0066cc;
}

.section-tab.current-user-tab[b-6n7p2674hi] {
    background-color: #e8e8e8;
}

.section-tab.current-user-tab.active[b-6n7p2674hi] {
    background-color: #c8d5e3;
    border-bottom-color: #0066cc;
}

.section-tab.other-user-tab[b-6n7p2674hi] {
    background-color: #e8e8e8;
}

.section-tab.other-user-tab.active[b-6n7p2674hi] {
    background-color: #c8d5e3;
    border-bottom-color: #0066cc;
}

.tab-icon[b-6n7p2674hi] {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 6px;
    background: rgba(255,255,255,0.85);
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    padding: 2px;
}

.comment-icon use[b-6n7p2674hi] {
    fill: currentColor;
    stroke: none;
}


.edit-icon use[b-6n7p2674hi] {
    fill: currentColor;
    stroke: none;
}

.section-content-row[b-6n7p2674hi] {
    display: flex;
    flex-direction: row;
    gap: 16px; /* provide horizontal space between content and comments */
    flex: 1;
    min-height: 0;
    /* Keep outer bottom border only; remove vertical borders to avoid a divider between content and comments */
    border-bottom: 1px solid #d0d0d0;
    padding: 12px 0; /* small vertical padding to give breathing room */
}

.content-editor-wrapper[b-6n7p2674hi] {
    flex: 1 1 auto;
    min-width: 0;
    background-color: #fff;
    padding-right: 12px; /* extra space to separate editor from comment column */
    box-sizing: border-box;
}

.content-editor[b-6n7p2674hi] {
    position: relative;
    background-color: #fff;
}

.tab-content[b-6n7p2674hi] {
    display: none;
    padding: 0;
}

.tab-content.active[b-6n7p2674hi] {
    display: block;
}

.readonly-content[b-6n7p2674hi] {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding: 20px;
}

.readonly-content a[b-6n7p2674hi] {
    color: #0066cc;
    text-decoration: none;
}

.readonly-content a:hover[b-6n7p2674hi] {
    text-decoration: underline;
}

.readonly-content ul[b-6n7p2674hi],
.readonly-content ol[b-6n7p2674hi] {
    margin: 1em 0;
    padding-left: 2em;
}

.readonly-content li[b-6n7p2674hi] {
    margin-bottom: 0.5em;
}

.readonly-content table[b-6n7p2674hi] {
    margin: 1em 0;
    border-collapse: collapse;
    width: 100%;
}

.readonly-content td[b-6n7p2674hi],
.readonly-content th[b-6n7p2674hi] {
    border: 1px solid #ddd;
    padding: 8px;
}

.references-container[b-6n7p2674hi] {
    margin: 20px 0;
}

.references-container ol[b-6n7p2674hi] {
    margin: 0;
    padding-left: 2em;
}

.references-container li[b-6n7p2674hi] {
    margin-bottom: 8px;
    line-height: 1.6;
}

.section-comments[b-6n7p2674hi] {
    width: auto; /* size itself to the CommentBox content */
    flex: 0 0 auto; /* do not grow or shrink unexpectedly */
    max-width: 420px; /* cap the width so it doesn't get too wide */
    /* Remove vertical divider between content and comments to match legacy layout */
    background-color: #fafafa;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 12px; /* internal padding so comment components have breathing room */
    box-sizing: border-box;
}

.comments-for-proposal[b-6n7p2674hi] {
    display: contents;
}

.comments-for-proposal > *[b-6n7p2674hi] {
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding-right: 6px; /* prevent content from touching the edge when scrolling */
}

.comments-for-proposal[style*="display:none"][b-6n7p2674hi] {
    display: none !important;
}

/* TinyMCE editor styling */
.tinymce-editor[b-6n7p2674hi] {
    width: 100%;
    min-height: 300px;
    font-family: 'Courier New', monospace;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    line-height: 1.6;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .section-content-row[b-6n7p2674hi] {
        flex-direction: column;
    }

    .section-comments[b-6n7p2674hi] {
        width: 100%;
        border-left: none;
        border-top: 1px solid #ddd;
    }

    .section-tab[b-6n7p2674hi] {
        padding: 8px 12px;
        font-size: 12px;
    }
}
/* /Components/DocumentSectionRenderer.razor.rz.scp.css */
/* Section header indentation based on hierarchy level */
.section-header[b-gwv611h4ho] {
    margin-left: 0;
}

.section-header.section-header-level-1[b-gwv611h4ho] {
    margin-left: 2rem;
}

.section-header.section-header-level-2[b-gwv611h4ho] {
    margin-left: 4rem;
}

.section-header.section-header-level-3[b-gwv611h4ho] {
    margin-left: 6rem;
}

.section-header.section-header-level-4[b-gwv611h4ho] {
    margin-left: 8rem;
}

.section-header h2[b-gwv611h4ho] {
    margin: 0;
}
/* /Components/StyledCard.razor.rz.scp.css */
.card[b-f7k7o1lx4n] {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover[b-f7k7o1lx4n] {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-header[b-f7k7o1lx4n] {
    background: linear-gradient(135deg, #0A1A33 0%, #284662 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: 0.025em;
}

.card-body[b-f7k7o1lx4n] {
    padding: 1.5rem;
    background-color: white;
    color: #334155;
    line-height: 1.6;
}
/* /Components/StyledCardBody.razor.rz.scp.css */
.card-body-section[b-3bmoi7zwhc] {
    padding: 0;
    margin-bottom: 1rem;
}

.card-body-section:last-child[b-3bmoi7zwhc] {
    margin-bottom: 0;
}

.section-title[b-3bmoi7zwhc] {
    font-size: 1rem;
    font-weight: 600;
    color: #0A1A33;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.section-content[b-3bmoi7zwhc] {
    color: #475569;
    line-height: 1.6;
}

.section-footer[b-3bmoi7zwhc] {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
}
/* /Views/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-02ebpun2zf] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a[b-02ebpun2zf] {
  color: #fff;
}

.btn-primary[b-02ebpun2zf] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active[b-02ebpun2zf],
.nav-pills .show>.nav-link[b-02ebpun2zf] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-02ebpun2zf] {
  border-top: 1px solid #e5e5e5;
}

.border-bottom[b-02ebpun2zf] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-02ebpun2zf] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-02ebpun2zf] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-02ebpun2zf] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
