/* Committee Portal Styles - commissie-styles.css */
/* Using Design System Components */

/* Import design system */
@import url('design-system.css');

/* Custom Properties for Committee Theme */
:root {
    --committee-primary: #2C3E50;
    --committee-secondary: #34495E;
    --committee-accent: #3498DB;
    --risk-low: #27AE60;
    --risk-medium: #F39C12;
    --risk-high: #E74C3C;
    --risk-critical: #C0392B;
    --success-green: #2ECC71;
    --warning-yellow: #F1C40F;
    --danger-red: #E74C3C;
    --info-blue: #3498DB;
    --committee-glass: rgba(255, 255, 255, 0.95);
    --committee-shadow: 0 8px 32px rgba(44, 62, 80, 0.1);
}

/* Base Layout */
body {
    background: linear-gradient(135deg, #ECF0F1 0%, #BDC3C7 100%);
    min-height: 100vh;
}

.committee-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header Styling */
.committee-header {
    background: var(--committee-glass);
    /* backdrop-filter removed for performance */
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--committee-shadow);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.header-content h1 {
    font-size: 2.5rem;
    color: var(--committee-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.header-subtitle {
    color: var(--committee-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.header-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--committee-secondary);
}

.meta-item i {
    color: var(--committee-accent);
}

/* Navigation Tabs */
.nav-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--committee-glass);
    border-radius: 15px;
    overflow-x: auto;
    box-shadow: var(--committee-shadow);
}

.nav-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--committee-accent);
    border-radius: 10px;
    color: var(--committee-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
}

.nav-tab:hover {
    background: var(--committee-accent);
    color: white;
    transform: translateY(-2px);
}

.nav-tab.active {
    background: var(--committee-accent);
    color: white;
}

/* Section Spacing & Styling */
.accountability-section {
    margin-bottom: 3rem;
    background: var(--committee-glass);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--committee-shadow);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.accountability-section h3 {
    color: var(--committee-primary);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Executive Summary Section */
.executive-summary {
    margin-bottom: 3rem;
}

.section-title {
    color: var(--committee-primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title i {
    color: var(--committee-accent);
}

.summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.summary-card {
    background: var(--committee-glass);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--committee-shadow);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(44, 62, 80, 0.15);
}

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

.card-title {
    font-size: 1.1rem;
    color: var(--committee-primary);
    font-weight: 600;
}

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

.status-approved {
    background: var(--success-green);
    color: white;
}

.status-pending {
    background: var(--warning-yellow);
    color: var(--committee-primary);
}

.status-review {
    background: var(--info-blue);
    color: white;
}

.status-critical {
    background: var(--danger-red);
    color: white;
}

.card-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--committee-accent);
    margin-bottom: 0.5rem;
}

.card-description {
    color: var(--committee-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.card-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.action-link {
    color: var(--committee-accent);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.action-link:hover {
    text-decoration: underline;
    transform: translateX(3px);
}

/* Educational Accountability Section */
.educational-accountability {
    margin-bottom: 3rem;
}

.objectives-matrix {
    background: var(--committee-glass);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--committee-shadow);
    overflow-x: auto;
}

.objectives-matrix table {
    width: 100%;
    border-collapse: collapse;
}

.objectives-matrix th {
    background: var(--committee-primary);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.objectives-matrix td {
    padding: 1rem;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    vertical-align: top;
}

.objectives-matrix tr:hover {
    background: rgba(52, 152, 219, 0.05);
}

.competency-tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--committee-accent);
    color: white;
    border-radius: 5px;
    font-size: 0.85rem;
    margin: 0.25rem;
}

.alignment-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: var(--success-green);
    color: white;
    border-radius: 5px;
    font-size: 0.85rem;
}

/* Assessment Validity Section */
.validity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.validity-card {
    background: var(--committee-glass);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--committee-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.validity-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(44, 62, 80, 0.15);
}

.validity-card h4 {
    color: var(--committee-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.validity-card .progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(44, 62, 80, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin: 1rem 0;
    position: relative;
}

.validity-card .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--committee-accent), var(--success-green));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: width 0.8s ease-in-out;
}

.validity-card p {
    color: var(--committee-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Risk Management Matrix */
.risk-management {
    margin-bottom: 3rem;
}

.risk-matrix-container {
    background: var(--committee-glass);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--committee-shadow);
}

.risk-matrix {
    position: relative;
    margin: 2rem 0;
    padding: 2rem;
}

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

.matrix-legend {
    display: flex;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

.legend-color.low {
    background: var(--risk-low);
}

.legend-color.medium {
    background: var(--risk-medium);
}

.legend-color.high {
    background: var(--risk-high);
}

.legend-color.critical {
    background: var(--risk-critical);
}

/* Risk Matrix Grid Layout */
.matrix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.matrix-labels {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--committee-primary);
}

.matrix-labels .y-axis-label {
    position: absolute;
    left: -120px;
    top: 50%;
    transform: rotate(-90deg);
    transform-origin: center;
    white-space: nowrap;
}

.matrix-labels .x-axis-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.matrix-cell {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    min-height: 120px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.matrix-cell:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.matrix-cell h4 {
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-align: center;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.1);
}

/* Risk level colors for matrix cells */
.matrix-cell.high-high {
    border-left: 4px solid var(--risk-critical);
    background: linear-gradient(135deg, #fff 0%, #ffebee 100%);
}

.matrix-cell.high-medium {
    border-left: 4px solid var(--risk-high);
    background: linear-gradient(135deg, #fff 0%, #fff3e0 100%);
}

.matrix-cell.high-low {
    border-left: 4px solid var(--risk-medium);
    background: linear-gradient(135deg, #fff 0%, #f3e5f5 100%);
}

.matrix-cell.medium-high {
    border-left: 4px solid var(--risk-high);
    background: linear-gradient(135deg, #fff 0%, #fff8e1 100%);
}

.matrix-cell.medium-medium {
    border-left: 4px solid var(--risk-medium);
    background: linear-gradient(135deg, #fff 0%, #f1f8e9 100%);
}

.matrix-cell.medium-low {
    border-left: 4px solid var(--risk-low);
    background: linear-gradient(135deg, #fff 0%, #e8f5e8 100%);
}

.matrix-cell.low-high,
.matrix-cell.low-medium,
.matrix-cell.low-low {
    border-left: 4px solid var(--risk-low);
    background: linear-gradient(135deg, #fff 0%, #e8f5e8 100%);
}

.risk-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.risk-item:hover {
    background: white;
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.empty {
    color: #999;
    font-style: italic;
    text-align: center;
    padding: 1rem;
}

/* Risk Details Section */
.risk-details {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.risk-details h3 {
    margin: 0 0 1rem 0;
    color: var(--committee-primary);
    font-size: 1.2rem;
}

.select-prompt {
    color: #666;
    font-style: italic;
}

.risk-grid {
    display: grid;
    grid-template-columns: 100px repeat(3, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 1px;
    background: rgba(44, 62, 80, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.grid-header {
    background: var(--committee-primary);
    color: white;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
}

.grid-label {
    background: var(--committee-secondary);
    color: white;
    padding: 1rem;
    font-weight: 500;
}

.grid-cell {
    background: white;
    padding: 1rem;
    min-height: 100px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.grid-cell:hover {
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.grid-cell.low-risk {
    background: #F8F9FA;
}

.grid-cell.medium-risk {
    background: #F8F9FA;
}

.grid-cell.high-risk {
    background: #F8F9FA;
}

.risk-item {
    background: white;
    border-radius: 8px;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.risk-score {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--committee-primary);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Mitigation Strategies */
.mitigation-strategies {
    margin-bottom: 3rem;
}

.strategies-table {
    background: var(--committee-glass);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--committee-shadow);
    overflow-x: auto;
}

.strategies-table table {
    width: 100%;
    border-collapse: collapse;
}

.strategies-table th {
    background: linear-gradient(135deg, var(--committee-primary) 0%, var(--committee-secondary) 100%);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.strategies-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.strategies-table tr:hover {
    background: rgba(52, 152, 219, 0.05);
}

.strategy-priority {
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.priority-high {
    background: var(--danger-red);
    color: white;
}

.priority-medium {
    background: var(--warning-yellow);
    color: var(--committee-primary);
}

.priority-low {
    background: var(--info-blue);
    color: white;
}

.strategy-owner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.owner-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--committee-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Pedagogical Innovation */
.pedagogical-innovation {
    margin-bottom: 3rem;
}

.innovation-content {
    background: var(--committee-glass);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--committee-shadow);
}

.innovation-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.phase-card {
    background: #F8F9FA;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid var(--committee-accent);
}

.phase-number {
    background: var(--committee-accent);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.phase-title {
    font-size: 1.1rem;
    color: var(--committee-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.phase-description {
    color: var(--committee-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.innovation-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(44, 62, 80, 0.1);
}

.metric-box {
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--committee-accent);
}

.metric-label {
    color: var(--committee-secondary);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Evidence & Research */
.evidence-research {
    margin-bottom: 3rem;
}

.research-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.research-card {
    background: var(--committee-glass);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--committee-shadow);
    transition: all 0.3s ease;
}

.research-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(44, 62, 80, 0.15);
}

.research-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--committee-accent);
    color: white;
    border-radius: 5px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.research-title {
    font-size: 1.1rem;
    color: var(--committee-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.research-authors {
    color: var(--committee-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.research-summary {
    color: var(--committee-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.research-link {
    color: var(--committee-accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

/* Quality Assurance */
.quality-assurance {
    margin-bottom: 3rem;
}

.qa-checklist {
    background: var(--committee-glass);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--committee-shadow);
}

.checklist-category {
    margin-bottom: 2rem;
}

.category-header {
    background: linear-gradient(135deg, var(--committee-primary) 0%, var(--committee-secondary) 100%);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.category-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.progress-bar {
    width: 100px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: white;
    transition: width 0.3s ease;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: rgba(52, 152, 219, 0.05);
}

.checklist-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--committee-accent);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.checklist-checkbox.checked {
    background: var(--committee-accent);
}

.checklist-checkbox.checked::after {
    content: '✓';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}

.checklist-label {
    flex: 1;
    color: var(--committee-primary);
}

.checklist-status {
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-size: 0.85rem;
}

.status-complete {
    background: var(--success-green);
    color: white;
}

.status-incomplete {
    background: var(--warning-yellow);
    color: var(--committee-primary);
}

/* Communication Templates */
.communication-templates {
    margin-bottom: 3rem;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.template-card {
    background: var(--committee-glass);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--committee-shadow);
    transition: all 0.3s ease;
}

.template-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(44, 62, 80, 0.15);
}

.template-icon {
    width: 50px;
    height: 50px;
    background: var(--committee-accent);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.template-title {
    font-size: 1.1rem;
    color: var(--committee-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.template-description {
    color: var(--committee-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.template-actions {
    display: flex;
    gap: 0.5rem;
}

.template-btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-preview {
    background: var(--committee-accent);
    color: white;
}

.btn-preview:hover {
    background: #2980B9;
}

.btn-copy {
    background: transparent;
    color: var(--committee-accent);
    border: 2px solid var(--committee-accent);
}

.btn-copy:hover {
    background: var(--committee-accent);
    color: white;
}

/* Decision Support */
.decision-support {
    margin-bottom: 3rem;
}

.flowchart-container {
    background: var(--committee-glass);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--committee-shadow);
}

.flowchart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.flow-node {
    background: white;
    border: 2px solid var(--committee-accent);
    border-radius: 10px;
    padding: 1.5rem;
    max-width: 400px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.flow-node:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2);
}

.node-type {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--committee-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    font-size: 0.85rem;
}

.node-title {
    font-size: 1.1rem;
    color: var(--committee-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.node-description {
    color: var(--committee-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.node-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.option-btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.option-yes {
    background: var(--success-green);
    color: white;
}

.option-no {
    background: var(--danger-red);
    color: white;
}

.option-btn:hover {
    transform: translateY(-2px);
}

.flow-connector {
    width: 2px;
    height: 30px;
    background: var(--committee-accent);
    position: relative;
}

.flow-connector::after {
    content: '▼';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--committee-accent);
}

/* Footer Actions */
.footer-actions {
    background: var(--committee-glass);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: var(--committee-shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

/* Committee-specific button overrides - extend design system instead of replacing */
.commissie-btn {
    /* Inherits from universal button styles in design-system.css */
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: var(--font-size-base);
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    min-height: 48px;
    box-shadow: var(--shadow-sm);
}

.commissie-btn-primary {
    background: var(--committee-accent);
    color: white;
}

.commissie-btn-primary:hover {
    background: #2980B9;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.commissie-btn-secondary {
    background: transparent;
    color: var(--committee-accent);
    border: 2px solid var(--committee-accent);
}

.commissie-btn-secondary:hover {
    background: var(--committee-accent);
    color: white;
}

.commissie-btn-success {
    background: var(--success-green);
    color: white;
}

.commissie-btn-success:hover {
    background: #27AE60;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.last-updated {
    color: var(--committee-secondary);
    font-size: 0.9rem;
}

/* Print Styles */
@media print {
    body {
        background: white;
    }
    
    .nav-tabs,
    .footer-actions {
        display: none;
    }
    
    .committee-container {
        max-width: 100%;
        padding: 0;
    }
    
    .section-title {
        page-break-after: avoid;
    }
    
    .summary-cards,
    .research-cards,
    .templates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .committee-header,
    .summary-card,
    .objectives-matrix,
    .risk-matrix-container,
    .strategies-table,
    .innovation-content,
    .research-card,
    .qa-checklist,
    .template-card,
    .flowchart-container {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .committee-header h1 {
        font-size: 1.8rem;
    }
    
    .nav-tabs {
        flex-direction: column;
    }
    
    .nav-tab {
        width: 100%;
        text-align: center;
    }
    
    .summary-cards,
    .research-cards,
    .templates-grid {
        grid-template-columns: 1fr;
    }
    
    .risk-grid {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto;
    }
    
    .flowchart {
        padding: 1rem;
    }
    
    .footer-actions {
        flex-direction: column;
        text-align: center;
    }
    
    .action-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .commissie-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid var(--committee-accent);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Tooltips */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--committee-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.tooltip:hover::after {
    opacity: 1;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.modal-title {
    font-size: 1.5rem;
    color: var(--committee-primary);
    font-weight: 600;
}

.modal-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--committee-secondary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--danger-red);
    transform: rotate(90deg);
}

.modal-body {
    color: var(--committee-secondary);
    line-height: 1.6;
}

.modal-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* ==========================================
   AI-Transition Roadmap Styles
   ========================================== */

.ai-transition-roadmap {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-2xl);
}

.roadmap-intro .section-description {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

/* Mode Cards Grid */
.roadmap-modes {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.mode-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.mode-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Mode-specific styling */
.traditional-card {
    border-left: 4px solid #6B7280;
}

.traditional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6B7280, #9CA3AF);
}

.assisted-card {
    border-left: 4px solid #3B82F6;
}

.assisted-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #60A5FA);
}

.integrated-card {
    border-left: 4px solid var(--primary);
}

.integrated-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #A8E06A);
}

.first-card {
    border-left: 4px solid var(--accent);
}

.first-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #FF6B6B);
}

.mode-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.mode-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.mode-status {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mode-status.current {
    background: #10B981;
    color: white;
}

.mode-status.future {
    background: #F59E0B;
    color: white;
}

.mode-content p {
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.mode-features h4,
.blooms-mapping h4 {
    font-size: 0.95rem;
    margin: var(--space-md) 0 var(--space-sm) 0;
    color: var(--text-medium);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mode-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-lg);
}

.mode-features li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
    line-height: 1.5;
}

.mode-features li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Bloom's Taxonomy Levels */
.bloom-levels {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.bloom-level {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bloom-level.primary {
    background: var(--primary);
    color: white;
}

.bloom-level.secondary {
    background: #E5E7EB;
    color: var(--text-medium);
}

.bloom-level.advanced {
    background: var(--accent);
    color: white;
}

/* Timeline Roadmap */
.transition-timeline {
    margin-bottom: var(--space-2xl);
}

.timeline-roadmap {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.timeline-phase {
    flex: 1;
    text-align: center;
    position: relative;
}

.timeline-phase:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
    z-index: 1;
}

.phase-marker {
    background: var(--primary);
    color: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-weight: bold;
    margin-bottom: var(--space-sm);
    display: inline-block;
    font-size: 0.9rem;
}

.timeline-phase.current .phase-marker {
    background: #10B981;
}

.timeline-phase.future .phase-marker {
    background: #6B7280;
}

.phase-content h4 {
    margin: var(--space-sm) 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.phase-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: var(--space-sm);
    color: var(--text-medium);
}

.phase-status {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phase-status.active {
    background: #10B981;
    color: white;
}

.phase-status.pending {
    background: #F59E0B;
    color: white;
}

.phase-status.future {
    background: #6B7280;
    color: white;
}

/* Assessment Evolution Grid */
.assessment-evolution {
    margin-bottom: var(--space-2xl);
}

.assessment-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.assessment-item {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.assessment-item h4 {
    margin-bottom: var(--space-md);
    color: var(--text-dark);
    font-size: 1.1rem;
    text-align: center;
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--primary);
}

.assessment-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.assessment-item li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    line-height: 1.5;
}

.assessment-item li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Readiness Indicators */
.transition-readiness {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.readiness-indicators {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.readiness-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.readiness-item.ready {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.3);
}

.readiness-item.pending {
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.3);
}

.indicator-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.readiness-item h4 {
    margin: 0 0 var(--space-xs) 0;
    color: var(--text-dark);
    font-size: 1rem;
}

.readiness-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-medium);
}

/* Responsive Design for Roadmap */
@media (max-width: 768px) {
    .timeline-roadmap {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-phase:not(:last-child)::after {
        content: '↓';
        position: static;
        display: block;
        margin: var(--space-md) auto;
        transform: none;
    }
    
    .roadmap-modes {
        grid-template-columns: 1fr;
    }
    
    .assessment-grid {
        grid-template-columns: 1fr;
    }
    
    .readiness-indicators {
        grid-template-columns: 1fr;
    }
}

/* Communication Templates Tab Styling */
.template-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.template-tab {
    background: transparent;
    border: none;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--committee-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.template-tab:hover {
    background: rgba(44, 62, 80, 0.05);
    color: var(--committee-primary);
    transform: translateY(-1px);
}

.template-tab.active {
    background: var(--committee-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.2);
}

.template-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--committee-primary);
}

.template-content {
    background: white;
    border-radius: 0 8px 8px 8px;
    box-shadow: var(--committee-shadow);
}

.template-panel {
    padding: 2rem;
    display: none;
}

.template-panel.active {
    display: block;
}

.template-panel h3 {
    color: var(--committee-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.template-box {
    background: #f8f9fa;
    border: 1px solid rgba(44, 62, 80, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.template-box pre {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--committee-secondary);
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Responsive tabs */
@media (max-width: 768px) {
    .template-tabs {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .template-tab {
        flex: 1;
        min-width: calc(50% - 2px);
        font-size: 0.85rem;
        padding: 10px 12px;
    }
    
    .template-panel {
        padding: 1.5rem;
    }
}