/* Admin Page Styles */

.admin-page {
    padding: 1rem;
    min-height: 100vh;
}

/* Admin Tabs Navigation */
.admin-tabs {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding: 0.25rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.admin-tabs::-webkit-scrollbar {
    display: none;
}

.admin-tab {
    flex: 0 0 auto;
    padding: 0.625rem 0.75rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748B;
    background: transparent;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.admin-tab:hover {
    color: #1E3A5F;
    background: rgba(255, 255, 255, 0.5);
}

.admin-tab.active {
    color: #1E3A5F;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.admin-badge {
    font-size: 0.6em;
    color: var(--secondary-color, #3B82F6);
    font-weight: 400;
}

/* Admin Report List */
.admin-report-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-report-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.2s;
}

.admin-report-item:hover {
    background-color: #f8fafc;
}

.report-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.report-title {
    font-weight: 500;
    color: #1e293b;
    font-size: 0.875rem;
}

.report-date {
    font-size: 0.75rem;
    color: #64748b;
}

/* Status Badges */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-in-progress {
    background: #fef3c7;
    color: #d97706;
}

.status-completed {
    background: #d1fae5;
    color: #059669;
}

/* Report Detail Page */
.report-detail-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.detail-section {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.detail-section:last-child {
    border-bottom: none;
}

.detail-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.detail-section-header .detail-section-title {
    margin-bottom: 0;
}

.detail-section-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color, #1E3A5F);
    margin-bottom: 0.75rem;
}

.edit-location-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.edit-location-form .edit-field label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.edit-field-row {
    display: flex;
    gap: 0.75rem;
}

.edit-field-row .edit-field {
    flex: 1;
}

.edit-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 0.25rem;
}

.coordinates-link {
    color: var(--primary-color, #1E3A5F);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.coordinates-link:hover {
    text-decoration: underline;
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.detail-label {
    font-size: 0.75rem;
    color: #64748b;
}

.detail-value {
    font-size: 0.875rem;
    color: #1e293b;
}

.detail-description {
    white-space: pre-wrap;
    line-height: 1.5;
}

.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.photo-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.photo-clickable {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.photo-clickable:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Admin Actions */
.admin-actions {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
}

.btn-secondary {
    flex: 1;
    padding: 0.75rem;
    border-radius: 9999px;
    background: #e2e8f0;
    color: #475569;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background: #cbd5e1;
}

/* Incident Investigation Styles */
.ii-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.btn-new-report,
.btn-continue-report {
    padding: 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    width: 100%;
}

.btn-new-report {
    background: linear-gradient(135deg, #66BB6A 0%, #43A047 100%);
    color: white;
}

.btn-new-report:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.btn-continue-report {
    background: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 100%);
    color: #1B5E20;
}

.btn-continue-report:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Step Page Styles */
.ii-step-page {
    padding: 1rem;
}

.step-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.step-instruction {
    color: var(--primary-color, #1E3A5F);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.form-section {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color, #1E3A5F);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group.half {
    flex: 1;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    background: #fef7f7;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color, #1E3A5F);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox/Radio Styles */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-group.horizontal {
    flex-direction: row;
    flex-wrap: wrap;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #334155;
}

.checkbox-item input[type="radio"],
.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color, #1E3A5F);
}

/* Step Actions */
.step-actions {
    margin-top: 1.5rem;
}

.step-actions.two-buttons {
    display: flex;
    gap: 1rem;
}

.step-actions.two-buttons > * {
    flex: 1;
    min-width: 0;
}

.btn-submit {
    flex: 1;
    padding: 0.75rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-submit:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

/* Subsection Title (Step 4, 5) */
.subsection-title {
    font-size: 0.825rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
}

/* Checkbox List for Root Cause Analysis (Step 4) */
.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.checkbox-list .checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.825rem;
    padding: 0.375rem 0;
}

.checkbox-list .checkbox-item input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.other-input {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

/* Sub-options (Near-miss types in Step 3) */
.sub-options {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    padding-left: 0.75rem;
    border-left: 2px solid #e2e8f0;
}

/* Incident Type Categorized Radio Group (Step 3) */
.incident-type-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.incident-type-category {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.incident-type-category-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

.incident-type-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 1.5rem;
}

/* Action Item Cards (Step 5) */
.action-item-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.action-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.action-item-number {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    background: #e2e8f0;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove-item {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0 0.25rem;
    line-height: 1;
}

.btn-add-item {
    width: 100%;
    padding: 0.75rem;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    background: transparent;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-add-item:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: #eff6ff;
}

/* Detail Page Additional Styles */
.btn-back-nav {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid #cbd5e1;
    background: white;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-back-nav:hover {
    background: #f1f5f9;
}

.detail-multiline {
    white-space: pre-wrap;
}

.detail-subsection {
    margin-bottom: 1rem;
}

.detail-list {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0.5rem 0;
    font-size: 0.825rem;
    color: #334155;
}

.detail-list li {
    margin-bottom: 0.25rem;
}

.detail-other-text {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0.25rem 0 0 1.25rem;
    font-style: italic;
}

.detail-empty {
    font-size: 0.825rem;
    color: #94a3b8;
    font-style: italic;
}

.detail-text-block {
    font-size: 0.825rem;
    color: #334155;
    white-space: pre-wrap;
    line-height: 1.5;
}

.action-detail-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem;
    margin: 0.5rem 0;
}

.action-detail-card .detail-row {
    padding: 0.25rem 0;
}

.completion-section {
    background: #f0fdf4;
    border-radius: 8px;
    padding: 1rem;
}

.status-badge.status-reviewed {
    background: #dbeafe;
    color: #2563eb;
}

/* Loading and Empty States */
.loading-container,
.empty-state {
    text-align: center;
    padding: 2rem;
    color: #64748b;
}

.loading-text,
.no-reports {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Report Status Section */
.report-status-section {
    margin-top: 1.5rem;
}

.report-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.report-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #fef7f7;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.report-item:hover {
    background: #fef1f1;
}

.report-status-text {
    font-size: 0.75rem;
    color: #64748b;
}

/* Dashboard Stat Cards */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color, #1E3A5F);
}

.stat-card.stat-warning {
    border-left-color: #f59e0b;
}

.stat-card.stat-success {
    border-left-color: #22c55e;
}

.stat-card.stat-info {
    border-left-color: #3b82f6;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color, #1E3A5F);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Dashboard Charts */
.charts-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.chart-card {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chart-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color, #1E3A5F);
    margin-bottom: 0.75rem;
}

/* Recent Reports Section */
.recent-section {
    margin-bottom: 1rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.report-count {
    font-size: 0.75rem;
    color: #64748b;
}

/* Filter Section - defined in app.css */

/* Export Buttons */
.export-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.export-buttons.single {
    justify-content: flex-end;
}

/* Report Faculty Tag */
.report-faculty {
    font-size: 0.65rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    margin-top: 0.25rem;
}

/* Status Draft Badge */
.status-draft {
    background: #f1f5f9;
    color: #64748b;
}

/* Co-Assessors List */
.co-assessors-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.co-assessor-item {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.co-assessor-item .form-input {
    flex: 1;
}

/* Validation Message */
.validation-message {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Safety Moment Admin Content Management */

/* Add Content Button */
.content-actions {
    margin-bottom: 1rem;
}

/* Content Filter Tabs */
.content-filter-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.75rem;
}

.filter-tab {
    flex: 1;
    padding: 0.5rem 0.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-tab:hover {
    background: #f1f5f9;
}

.filter-tab.active {
    background: var(--primary-color, #1E3A5F);
    border-color: var(--primary-color, #1E3A5F);
    color: white;
}

/* Admin Content List */
.admin-content-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-content-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s;
}

.admin-content-item:hover {
    background-color: #f8fafc;
}

.content-main {
    flex: 1;
    cursor: pointer;
}

.content-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.content-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1e293b;
    margin: 0.25rem 0;
}

.content-date {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
}

/* Category Badges */
.category-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
}

.badge-news {
    background: #dbeafe;
    color: #1d4ed8;
}

.badge-article {
    background: #d1fae5;
    color: #059669;
}

/* Publish Status Badges */
.publish-status {
    font-size: 0.65rem;
    font-weight: 500;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
}

.status-published {
    background: #d1fae5;
    color: #059669;
}

/* Content Actions Inline */
.content-actions-inline {
    display: flex;
    gap: 0.5rem;
}

/* No Content Message */
.no-content-message {
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
    padding: 2rem 1rem;
}

/* Image Upload and Preview */
.form-input-file {
    width: 100%;
    padding: 0.5rem;
    border: 2px dashed #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    background: #f8fafc;
    cursor: pointer;
    transition: border-color 0.2s;
}

.form-input-file:hover {
    border-color: var(--primary-color, #1E3A5F);
}

.image-preview {
    position: relative;
    display: inline-block;
    margin: 0.5rem 0;
}

.image-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    object-fit: cover;
}

.image-preview-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.image-preview-list .image-preview {
    width: calc(50% - 0.25rem);
    margin: 0;
}

.image-preview-list .image-preview img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* Form Hints */
.form-hint {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

/* Error Message */
.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    padding: 0.75rem;
    background: #fef2f2;
    border-radius: 8px;
    margin: 1rem 0;
}

/* User Management Styles */
.user-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.user-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.user-info {
    flex: 1;
}

.user-name {
    font-weight: 600;
    color: var(--primary-color, #1E3A5F);
    margin-bottom: 0.25rem;
}

.user-email {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.user-meta {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.user-type-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: 500;
}

.badge-staff {
    background: #dbeafe;
    color: #1d4ed8;
}

.badge-student {
    background: #dcfce7;
    color: #16a34a;
}

.admin-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    background: #fef3c7;
    color: #d97706;
    font-weight: 500;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-actions.user-actions-vertical {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.toggle-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.self-indicator {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Super Admin Tab */
.admin-tab-super {
    background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
    color: #92400e !important;
}

.admin-tab-super:hover {
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
    color: #78350f !important;
}

.admin-tab-super.active {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #78350f !important;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

/* Super Admin Badge */
.super-admin-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
    color: #78350f;
    font-weight: 600;
}

/* Faculty Count Badge */
.faculty-count-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    background: #e0e7ff;
    color: #4338ca;
    font-weight: 500;
}

/* Faculty Tag Chips */
.faculty-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.faculty-chip {
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    background: #e0e7ff;
    color: #4338ca;
    font-weight: 500;
    white-space: nowrap;
}

.faculty-chip-more {
    background: #f3f4f6;
    color: #6b7280;
    cursor: default;
}

/* Super Admin Navigation Cards */
.super-admin-nav-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.nav-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-card-alert {
    border: 2px solid #ef4444;
    background: #fef2f2;
}

/* Nav card color variants */
.nav-card.nav-card-sky {
    background: linear-gradient(135deg, #F0F7FD 0%, #E1F0FA 100%);
}

.nav-card.nav-card-amber {
    background: linear-gradient(135deg, #FFFAF0 0%, #FFF3E0 100%);
}

.nav-card.nav-card-lavender {
    background: linear-gradient(135deg, #F8F2FE 0%, #F3E8FD 100%);
}

.nav-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #f0f9ff;
    border-radius: 12px;
    color: var(--primary-color, #1E3A5F);
}

/* Nav card icon color variants */
.nav-card-sky .nav-card-icon {
    background: #D0E8F5;
    color: #2E6A9E;
}

.nav-card-amber .nav-card-icon {
    background: #FFE8CC;
    color: #B8722D;
}

.nav-card-lavender .nav-card-icon {
    background: #E8DAFB;
    color: #7C4DBA;
}

.nav-card-alert .nav-card-icon {
    background: #fee2e2;
    color: #dc2626;
}

.nav-card-content {
    flex: 1;
}

.nav-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color, #1E3A5F);
    margin-bottom: 0.25rem;
}

.nav-card-description {
    font-size: 0.85rem;
    color: #64748b;
}

.nav-card-alert .nav-card-description .alert-text {
    color: #dc2626;
    font-weight: 500;
}

.nav-card-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
}

/* Quick Stats */
.quick-stats {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.quick-stats h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color, #1E3A5F);
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color, #1E3A5F);
}

.stat-item .stat-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Status Badge Variations */
.status-escalated {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #dc2626;
    font-weight: 600;
}

.status-unassigned {
    background: #f1f5f9;
    color: #64748b;
}

/* Report Status Display */
.report-status {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-end;
}

/* Escalated Report List */
.escalated-report-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.escalated-report-card {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ef4444;
}

.escalated-report-card .report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.escalated-report-card .report-content {
    margin-bottom: 1rem;
}

.escalated-report-card .report-location {
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.escalated-report-card .report-description {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.escalated-report-card .report-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
    color: #94a3b8;
}

.escalated-actions {
    display: flex;
    gap: 0.75rem;
}

.escalated-actions button {
    flex: 1;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

/* Admin List */
.admin-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.admin-info {
    flex: 1;
}

.admin-name {
    font-weight: 600;
    color: var(--primary-color, #1E3A5F);
    margin-bottom: 0.25rem;
}

.admin-email {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.no-faculties {
    font-size: 0.75rem;
    color: #94a3b8;
    font-style: italic;
}

/* Admin Actions */
.btn-sm {
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-link {
    background: #f0f9ff;
    color: #3b82f6;
}

.btn-link:hover {
    background: #dbeafe;
}

/* Faculty Checklist in Modal */
.faculty-checklist {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.faculty-group {
    margin-bottom: 1rem;
}

.faculty-group-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color, #1E3A5F);
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid #e2e8f0;
}

.faculty-group .checkbox-item {
    padding: 0.375rem 0;
}

/* Search Box */
.search-box {
    margin-bottom: 1rem;
}

/* Filter Row and Buttons - base styles in app.css */

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
}

.filter-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.filter-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: #fff;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.filter-btn.active {
    background: var(--primary-color, #1E3A5F);
    border-color: var(--primary-color, #1E3A5F);
    color: #fff;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-subtitle {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

/* Button Refresh */
.btn-refresh {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border: none;
    border-radius: 10px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-refresh:hover {
    background: #e2e8f0;
    color: var(--primary-color, #1E3A5F);
}

.btn-refresh:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-refresh .spinning {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Super Admin Actions in Detail Page */
.super-admin-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.super-admin-actions h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 0.75rem;
}

/* ========================================
   Incident Investigation Super Admin Styles
   ======================================== */

/* Investigation Tabs */
.investigation-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.25rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

/* Investigation List */
.investigation-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.investigation-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.investigation-card-clickable {
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.investigation-card-clickable:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.investigation-card.investigation-completed {
    opacity: 0.85;
    border-left: 3px solid #22c55e;
}

.inv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.inv-date {
    font-size: 0.75rem;
    color: #64748b;
}

.inv-content {
    margin-bottom: 0.75rem;
}

.inv-field {
    font-size: 0.875rem;
    color: #1e293b;
    margin-bottom: 0.375rem;
}

.inv-field strong {
    color: #475569;
}

.inv-suggestions,
.inv-notes {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.8rem;
}

.inv-suggestions p,
.inv-notes p {
    margin: 0.25rem 0 0 0;
    color: #64748b;
}

.inv-actions {
    display: flex;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0;
}

/* Status Badges */
.status-submitted {
    background: #fef3c7;
    color: #d97706;
}

.status-completed {
    background: #dcfce7;
    color: #16a34a;
}

/* ====================================
   Status Review Assessment Styles
   ==================================== */

/* Step Page Container */
.sr-step-page {
    padding: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.sr-step-page .step-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.sr-step-page .step-title-area {
    flex: 1;
}

.sr-step-page .page-main-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1E3A5F;
    margin: 0;
}

.sr-step-page .page-subtitle {
    font-size: 0.875rem;
    color: #64748B;
    margin: 0.25rem 0 0 0;
}

/* Step Card */
.sr-step-page .step-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sr-step-page .step-instruction {
    color: #64748B;
    font-size: 0.875rem;
    margin: 0 0 1rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

/* Assessment Items */
.category-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.assessment-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.assessment-item:hover {
    border-color: #cbd5e1;
}

.assessment-item.not-applicable {
    opacity: 0.6;
    background: #f1f5f9;
}

.assessment-item .item-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.assessment-item .item-number {
    background: #1E3A5F;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.assessment-item .item-description {
    flex: 1;
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.5;
}

/* Item Controls */
.assessment-item .item-controls {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 2.5rem;
}

.assessment-item .control-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.assessment-item .control-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Attachment Area */
.attachment-area {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.attachment-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: #e0f2fe;
    border-radius: 4px;
    font-size: 0.85rem;
}

.attachment-item a {
    color: #0369a1;
    text-decoration: none;
}

.attachment-item a:hover {
    text-decoration: underline;
}

.btn-remove-attachment {
    background: transparent;
    border: none;
    color: #dc2626;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0 0.25rem;
    line-height: 1;
}

.file-input {
    display: block;
    width: 100%;
    font-size: 0.85rem;
    padding: 0.5rem;
    border: 2px dashed #cbd5e1;
    border-radius: 6px;
    background: #fff;
}

.file-input::file-selector-button {
    padding: 0.375rem 0.75rem;
    border: none;
    background: #3B82F6;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 0.75rem;
}

/* File Upload Wrapper - Custom styled upload button */
.file-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn-upload-file {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, #3B82F6, #2563eb);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-upload-file:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.file-input-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.upload-status {
    color: #3B82F6;
    font-size: 0.85rem;
    font-style: italic;
}

.file-hint {
    margin-top: 0.375rem;
    font-size: 0.75rem;
    color: #64748b;
}

/* Step Actions */
.step-actions {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.step-actions.two-buttons {
    display: flex;
    gap: 1rem;
}

.step-actions.two-buttons > * {
    flex: 1;
    min-width: 0;
}

.step-actions .btn-secondary {
    flex: 1;
    padding: 0.875rem;
    background: #fff;
    color: #64748B;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.step-actions .btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.step-actions .btn-submit {
    flex: 1;
    padding: 0.875rem;
    background: linear-gradient(135deg, #3B82F6, #1E3A5F);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.step-actions .btn-submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.step-actions .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Step 10 Review Page */
.review-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.review-section:last-of-type {
    border-bottom: none;
}

.review-section .section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1E3A5F;
    margin: 0 0 1rem 0;
}

.info-grid {
    display: grid;
    gap: 0.5rem;
}

.info-item {
    display: flex;
    gap: 0.5rem;
}

.info-item .info-label {
    font-size: 0.85rem;
    color: #64748B;
    min-width: 120px;
}

.info-item .info-value {
    font-size: 0.85rem;
    color: #1E3A5F;
    font-weight: 500;
}

/* Summary Stats */
.summary-stats {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.stat-card {
    flex: 1;
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    text-align: center;
}

.stat-card.success { background: #dcfce7; }
.stat-card.warning { background: #fef3c7; }
.stat-card.danger { background: #fee2e2; }

.stat-card .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E3A5F;
}

.stat-card.success .stat-value { color: #16a34a; }
.stat-card.warning .stat-value { color: #d97706; }
.stat-card.danger .stat-value { color: #dc2626; }

.stat-card .stat-label {
    display: block;
    font-size: 0.7rem;
    color: #64748B;
    margin-top: 0.25rem;
}

/* Compliance Score Circle */
.compliance-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
}

.score-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.score-circle.score-high {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border: 3px solid #16a34a;
}

.score-circle.score-medium {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 3px solid #d97706;
}

.score-circle.score-low {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 3px solid #dc2626;
}

.score-circle .score-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.score-circle.score-high .score-value { color: #16a34a; }
.score-circle.score-medium .score-value { color: #d97706; }
.score-circle.score-low .score-value { color: #dc2626; }

.compliance-score .score-label {
    font-size: 0.875rem;
    color: #64748B;
    font-weight: 500;
}

/* Category Breakdown */
.category-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: #f8fafc;
    border-radius: 6px;
    font-size: 0.85rem;
}

.category-row .category-name {
    color: #334155;
}

.category-row .category-stats {
    color: #64748B;
    font-weight: 500;
}

/* Detail Page Styles */
.detail-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.status-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.status-draft {
    background: #f1f5f9;
    color: #64748B;
}

.status-badge.status-submitted {
    background: #fef3c7;
    color: #d97706;
}

.status-badge.status-approved {
    background: #dcfce7;
    color: #16a34a;
}

.status-badge.status-rejected {
    background: #fee2e2;
    color: #dc2626;
}

.review-info {
    font-size: 0.85rem;
    color: #64748B;
}

/* Detail Card */
.detail-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.detail-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1E3A5F;
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.detail-card .info-row {
    display: flex;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.detail-card .info-row:last-child {
    border-bottom: none;
}

.detail-card .info-label {
    width: 140px;
    font-size: 0.85rem;
    color: #64748B;
    flex-shrink: 0;
}

.detail-card .info-value {
    font-size: 0.85rem;
    color: #1E3A5F;
    font-weight: 500;
}

/* Compliance Overview */
.compliance-overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.score-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    padding: 1.5rem 2rem;
    border-radius: 12px;
}

.score-display.score-high { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }
.score-display.score-medium { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.score-display.score-low { background: linear-gradient(135deg, #fee2e2, #fecaca); }

.score-display .score-number {
    font-size: 3rem;
    font-weight: 700;
}

.score-display.score-high .score-number { color: #16a34a; }
.score-display.score-medium .score-number { color: #d97706; }
.score-display.score-low .score-number { color: #dc2626; }

.score-display .score-percent {
    font-size: 1.5rem;
    font-weight: 600;
    color: #64748B;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
}

.stat-item {
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    text-align: center;
    min-width: 80px;
}

.stat-item.success { background: #dcfce7; }
.stat-item.warning { background: #fef3c7; }
.stat-item.danger { background: #fee2e2; }

.stat-item .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E3A5F;
}

.stat-item.success .stat-number { color: #16a34a; }
.stat-item.warning .stat-number { color: #d97706; }
.stat-item.danger .stat-number { color: #dc2626; }

.stat-item .stat-label {
    display: block;
    font-size: 0.7rem;
    color: #64748B;
    margin-top: 0.25rem;
}

/* Category Section in Detail */
.category-section {
    margin-bottom: 1.5rem;
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-section .category-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-section .category-count {
    font-weight: 400;
    color: #64748B;
    font-size: 0.85rem;
}

/* Items Table */
.items-table {
    overflow-x: auto;
}

.items-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.items-table th,
.items-table td {
    padding: 0.5rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.items-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #64748B;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.items-table tr.not-applicable {
    background: #f8fafc;
    opacity: 0.7;
}

.items-table .col-num { width: 40px; text-align: center; }
.items-table .col-desc { min-width: 200px; }
.items-table .col-app { width: 100px; }
.items-table .col-impl { width: 100px; }
.items-table .col-attach { width: 80px; }
.items-table .col-remark { min-width: 150px; }

.badge-required {
    font-size: 0.9rem;
    margin-left: 0.25rem;
}

.badge-app,
.badge-impl {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
}

.badge-app.applicable { background: #dcfce7; color: #16a34a; }
.badge-app.not-applicable { background: #f1f5f9; color: #64748B; }

.badge-impl.implemented { background: #dcfce7; color: #16a34a; }
.badge-impl.partial { background: #fef3c7; color: #d97706; }
.badge-impl.not-implemented { background: #fee2e2; color: #dc2626; }
.badge-impl.na { background: #f1f5f9; color: #94a3b8; }

.attachment-link {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: #e0f2fe;
    color: #0369a1;
    border-radius: 4px;
    font-size: 0.75rem;
    text-decoration: none;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}

.attachment-link:hover {
    background: #bae6fd;
}

.no-attachment {
    color: #94a3b8;
}

/* Review Comments */
.review-comments {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.6;
    margin: 0;
    white-space: pre-wrap;
}

/* Action Card */
.action-card {
    border: 2px solid #e2e8f0;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Filter Section (Status Review) - base styles in app.css */

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #64748B;
}

.empty-state svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state p {
    margin: 0;
    font-size: 0.9rem;
}

/* ---- Faculty Management ---- */
.faculty-group-card {
    margin-bottom: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
}

.faculty-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #F9FAFB;
    border-bottom: 1px solid #E5E7EB;
}

.faculty-group-header h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    color: #1F2937;
}

.faculty-group-actions {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.faculty-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #F3F4F6;
    font-size: 0.875rem;
}

.faculty-item:last-child {
    border-bottom: none;
}

.faculty-item-name {
    flex: 1;
    color: #374151;
}

.faculty-item-actions {
    display: flex;
    gap: 0.15rem;
}

.faculty-add-row {
    padding: 0.5rem 1rem;
    border-top: 1px solid #E5E7EB;
}

.faculty-group-count {
    font-size: 0.8rem;
    color: #6B7280;
    margin-left: 0.5rem;
    font-weight: normal;
}

.faculty-empty-message {
    padding: 1rem;
    text-align: center;
    color: #9CA3AF;
    font-size: 0.85rem;
    font-style: italic;
}

/* Email verification badges (User Management) */
.verify-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-left: 4px;
}
.verify-badge-ok { background: #e6f4ea; color: #1e7e34; }
.verify-badge-admin { background: #e7f0fb; color: #1664c0; }
.verify-badge-pending { background: #fff4e5; color: #b26a00; }

/* Role selector (User Management) */
.role-control { display: flex; align-items: center; gap: 6px; justify-content: flex-end; }
.role-locked-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 8px;
    background: #f1f3f5;
    color: #495057;
    font-size: 0.8rem;
    font-weight: 600;
}
