/* /Components/CommentInput.razor.rz.scp.css */
.comment-input[b-kmfo98t655] {
    width: 100%;
    margin-bottom: 0.5rem;
}

.comment-input textarea[b-kmfo98t655] {
    resize: vertical;
    min-height: 80px;
}

.comment-input-footer[b-kmfo98t655] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.character-count[b-kmfo98t655] {
    flex: 1;
}

@media (max-width: 576px) {
    .comment-input-footer[b-kmfo98t655] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .character-count[b-kmfo98t655] {
        text-align: center;
    }
}
/* /Components/CommentThread.razor.rz.scp.css */
.comment-thread[b-54grq57e9y] {
    width: 100%;
}

.comments-list[b-54grq57e9y] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-item[b-54grq57e9y] {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.8rem;
    background-color: #fff;
    transition: box-shadow 0.2s;
    width: 80%;
}

.comment-left[b-54grq57e9y] {
    margin-right: auto;
}

.comment-right[b-54grq57e9y] {
    margin-left: auto;
    background-color: #e3f2fd;
}

.comment-right.system-comment[b-54grq57e9y],
.comment-left.system-comment[b-54grq57e9y] {
    background-color: #fff3cd !important;
}

.comment-item:hover[b-54grq57e9y] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comment-item.editing[b-54grq57e9y] {
    border-color: #0d6efd;
    background-color: #f0f7ff;
}

.comment-header[b-54grq57e9y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.comment-author[b-54grq57e9y] {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.comment-meta[b-54grq57e9y] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.comment-time[b-54grq57e9y] {
    color: #6c757d;
}

.system-comment[b-54grq57e9y] {
    background-color: #fff3cd !important;
    border-left: 4px solid #856404;
    margin-left: auto;
    margin-right: 0;
}

/* Admin/QSA system comments - left aligned with green background */
.comment-left.system-comment[b-54grq57e9y] {
    background-color: #d1e7dd !important;
    border-left: 4px solid #0f5132;
    margin-left: 0;
    margin-right: auto;
}

.comment-left.system-comment .comment-text[b-54grq57e9y] {
    color: #0f5132;
}

.comment-left.system-comment .system-label[b-54grq57e9y] {
    color: #0f5132;
}

.system-comment .comment-text[b-54grq57e9y] {
    font-style: italic;
    color: #856404;
    font-size: 0.9rem;
}

.system-comment .system-label[b-54grq57e9y] {
    color: #856404;
    font-weight: 600;
}

.comment-body[b-54grq57e9y] {
    margin-top: 0.5rem;
}

.comment-text[b-54grq57e9y] {
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.6;
}

.comment-input-section[b-54grq57e9y] {
    border-top: 2px solid #e9ecef;
    padding-top: 1rem;
}

@media (max-width: 576px) {
    .comment-header[b-54grq57e9y] {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-meta[b-54grq57e9y] {
        width: 100%;
        justify-content: flex-start;
    }
}
/* /Components/FileUpload.razor.rz.scp.css */
.file-upload-container[b-bxd5yjwicx] {
    width: 100%;
}

.upload-area[b-bxd5yjwicx] {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area:hover[b-bxd5yjwicx] {
    border-color: #0d6efd;
    background-color: #e7f1ff;
}

.upload-area.dragging[b-bxd5yjwicx] {
    border-color: #0d6efd;
    background-color: #cfe2ff;
    transform: scale(1.02);
}

.upload-prompt i[b-bxd5yjwicx] {
    display: block;
    margin-bottom: 1rem;
}

.file-list[b-bxd5yjwicx] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.file-item[b-bxd5yjwicx] {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 1rem;
    background-color: #fff;
    transition: box-shadow 0.2s ease;
}

.file-item:hover[b-bxd5yjwicx] {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.file-info[b-bxd5yjwicx] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.file-name[b-bxd5yjwicx] {
    font-weight: 500;
    word-break: break-word;
}

.file-size[b-bxd5yjwicx] {
    font-size: 0.875rem;
}

.file-preview[b-bxd5yjwicx] {
    display: flex;
    justify-content: center;
}

.alert-sm[b-bxd5yjwicx] {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

.progress[b-bxd5yjwicx] {
    min-width: 200px;
}
/* /Components/LoadingIndicator.razor.rz.scp.css */
.loading-overlay[b-0a9tp3s1ty] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.loading-overlay.fullscreen[b-0a9tp3s1ty] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.loading-spinner[b-0a9tp3s1ty] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loading-message[b-0a9tp3s1ty] {
    color: #fff;
    font-size: 1rem;
    margin: 0;
}

.loading-overlay:not(.fullscreen) .loading-message[b-0a9tp3s1ty] {
    color: #333;
}

.spinner-border[b-0a9tp3s1ty] {
    width: 3rem;
    height: 3rem;
}
/* /Components/MentionTextarea.razor.rz.scp.css */
/* Dropdown styles are in wwwroot/css/app.css (global) to ensure they apply
   regardless of Blazor CSS isolation scoping behaviour. */
.mention-textarea-wrapper[b-6fee2eufh6] {
    position: static;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-8c82syio3x] {
    position: relative;
    display: flex;
    flex-direction: row;
    height: 100vh;
}

.sidebar[b-8c82syio3x] {
    background: linear-gradient(180deg, #1a2332 0%, #2d3e52 100%);
    width: 250px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    transition: width 0.3s ease;
    overflow: hidden;
    z-index: 1000;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.sidebar.collapsed[b-8c82syio3x] {
    width: 60px;
}

.sidebar-header[b-8c82syio3x] {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hamburger-btn[b-8c82syio3x] {
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem;
    text-decoration: none;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-btn:hover[b-8c82syio3x] {
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1);
}

.hamburger-btn .bi[b-8c82syio3x] {
    display: inline-block;
}

.sidebar-nav[b-8c82syio3x] {
    padding-top: 20px;
}

.nav-section-header[b-8c82syio3x] {
    padding: 12px 0 8px 0;
    margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-section-header:first-child[b-8c82syio3x] {
    margin-top: 0;
    border-top: none;
}

.sidebar .nav-link[b-8c82syio3x] {
    color: white;
    padding: 15px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.sidebar.collapsed .nav-link[b-8c82syio3x] {
    justify-content: center;
    padding: 15px 0;
}

.sidebar .nav-link:hover[b-8c82syio3x] {
    background-color: rgba(255,255,255,0.1);
    cursor: pointer;
}

.sidebar .nav-link .bi[b-8c82syio3x] {
    font-size: 1.2rem;
    min-width: 20px;
    text-align: center;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sidebar .nav-text[b-8c82syio3x] {
    margin-left: 15px;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.sidebar.collapsed .nav-text[b-8c82syio3x] {
    opacity: 0;
    display: none;
}

.sidebar-bottom[b-8c82syio3x] {
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.welcome-bar[b-8c82syio3x] {
    background-color: #5a6a7a;
    color: white;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

main[b-8c82syio3x] {
    flex: 1;
    transition: margin-left 0.3s ease;
}

.main-expanded[b-8c82syio3x] {
    margin-left: 250px;
}

.main-collapsed[b-8c82syio3x] {
    margin-left: 60px;
}

.content[b-8c82syio3x] {
    padding: 2rem 2rem;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .sidebar[b-8c82syio3x] {
        width: 60px;
    }

    .sidebar.collapsed[b-8c82syio3x] {
        width: 0;
    }

    .main-expanded[b-8c82syio3x],
    .main-collapsed[b-8c82syio3x] {
        margin-left: 60px;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-15tfj3m7zz] {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.navbar-brand[b-15tfj3m7zz] {
    font-size: 1.1rem;
}

.bi[b-15tfj3m7zz] {
    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-15tfj3m7zz] {
    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-15tfj3m7zz] {
    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-15tfj3m7zz] {
    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-15tfj3m7zz] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

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

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

    .nav-item a[b-15tfj3m7zz] {
        color: white !important;
        padding: 15px 20px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        text-decoration: none !important;
        transition: background-color 0.2s;
        white-space: nowrap;
        border-radius: 4px;
    }

    .nav-item a:hover[b-15tfj3m7zz] {
        background-color: rgba(255,255,255,0.1);
        cursor: pointer;
    }

    .nav-item a i[b-15tfj3m7zz] {
        font-size: 1.2rem;
        min-width: 20px;
        text-align: center;
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-item a .nav-text[b-15tfj3m7zz] {
        margin-left: 15px;
        display: inline-block;
    }

.nav-item[b-15tfj3m7zz]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-15tfj3m7zz]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

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

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

    .nav-scrollable[b-15tfj3m7zz] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Admin/NAList.razor.rz.scp.css */
.requirements-list[b-0sw13179jn] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 500px;
    overflow-y: auto;
    padding: 1rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
}

.requirement-item[b-0sw13179jn] {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background-color: white;
    border: 1px solid #e9ecef;
    border-radius: 0.25rem;
    font-size: 0.95rem;
}

.requirement-item:hover[b-0sw13179jn] {
    background-color: #f8f9fa;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.requirement-item i[b-0sw13179jn] {
    font-size: 1rem;
}
