.layout{display:flex;height:100vh;width:100vw;overflow:hidden;background-color:var(--surface-2)}.sidebar{width:260px;background-color:var(--surface-1);border-right:1px solid var(--border);display:flex;flex-direction:column;flex-shrink:0}.sidebar-header{height:64px;display:flex;align-items:center;padding:0 var(--space-4);border-bottom:1px solid var(--border)}.logo-icon{width:32px;height:32px;background:var(--primary);color:#fff;border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;font-weight:700;margin-right:var(--space-2)}.logo-text{font-weight:700;font-size:1.25rem;letter-spacing:-.5px}.sidebar-nav{padding:var(--space-4) var(--space-2);flex:1;display:flex;flex-direction:column;gap:var(--space-1)}.nav-item{display:flex;align-items:center;gap:var(--space-3);padding:var(--space-2) var(--space-3);color:var(--text-2);border-radius:var(--radius-md);font-weight:500;transition:all var(--transition-fast)}.nav-item:hover{background-color:var(--surface-2);color:var(--text-1)}.nav-item.active{background-color:var(--primary-bg);color:var(--primary)}.sidebar-footer{padding:var(--space-4);border-top:1px solid var(--border)}.user-info{display:flex;align-items:center;gap:var(--space-2)}.avatar{width:40px;height:40px;border-radius:var(--radius-full);background-color:var(--surface-3);display:flex;align-items:center;justify-content:center;font-weight:600;color:var(--text-2)}.user-details{display:flex;flex-direction:column}.user-name{font-size:.9rem;font-weight:600}.user-role{font-size:.8rem;color:var(--text-3)}.header{height:64px;background-color:var(--surface-1);border-bottom:1px solid var(--border);display:flex;align-items:center;padding:0 var(--space-6);position:relative;z-index:100}.header-search{position:relative;width:300px}.search-icon{position:absolute;left:var(--space-3);top:50%;transform:translateY(-50%);color:var(--text-3)}.header-search input{width:100%;padding:var(--space-2) var(--space-3) var(--space-2) 2.5rem;border:1px solid var(--border);border-radius:var(--radius-full);background-color:var(--surface-2);transition:border-color var(--transition-fast)}.header-search input:focus{outline:none;border-color:var(--primary);background-color:var(--surface-1)}.icon-btn{background:none;border:none;color:var(--text-2);padding:var(--space-2);border-radius:var(--radius-full);position:relative}.icon-btn:hover{background-color:var(--surface-3);color:var(--text-1)}.notification-badge{position:absolute;top:6px;right:6px;width:8px;height:8px;background-color:var(--danger);border-radius:var(--radius-full);border:1px solid var(--surface-1)}.main-wrapper{flex:1;display:flex;flex-direction:column}.main-content{flex:1;padding:var(--space-6);overflow-y:auto}.dashboard-container{display:flex;flex-direction:column;gap:var(--space-6)}.dashboard-header{display:flex;justify-content:space-between;align-items:center}.date-display{color:var(--text-3);font-weight:500}.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:var(--space-4)}.stat-card{background:var(--surface-1);padding:var(--space-4);border-radius:var(--radius-md);border:1px solid var(--border);display:flex;align-items:flex-start;gap:var(--space-4);box-shadow:var(--shadow-sm);transition:transform var(--transition-fast)}.stat-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}.stat-icon{padding:var(--space-3);border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center}.stat-icon.blue{background:#3498db1a;color:#3498db}.stat-icon.red{background:#e74c3c1a;color:#e74c3c}.stat-icon.orange{background:#f1c40f1a;color:#f39c12}.stat-icon.green{background:#2ecc711a;color:#2ecc71}.stat-content{display:flex;flex-direction:column}.stat-value{font-size:1.5rem;font-weight:700;color:var(--text-1);line-height:1;margin-bottom:4px}.stat-title{font-size:.9rem;font-weight:600;color:var(--text-2)}.stat-label{font-size:.8rem;color:var(--text-3);margin-top:4px}.dashboard-row{display:flex;gap:var(--space-4);flex-wrap:wrap}.dashboard-section h3{margin-bottom:var(--space-4);padding-bottom:var(--space-2);border-bottom:1px solid var(--border)}.activity-list{display:flex;flex-direction:column;gap:var(--space-3)}.activity-item{display:flex;gap:var(--space-3);align-items:flex-start;padding-bottom:var(--space-3);border-bottom:1px solid var(--surface-3)}.activity-item:last-child{border-bottom:none;padding-bottom:0}.activity-dot{width:10px;height:10px;border-radius:var(--radius-full);margin-top:6px;flex-shrink:0}.activity-dot.success{background-color:var(--success)}.activity-dot.danger{background-color:var(--danger)}.activity-dot.warning{background-color:var(--warning)}.activity-dot.info{background-color:var(--info)}.activity-content{font-size:.9rem}.activity-user{font-weight:600;color:var(--text-1);margin-right:4px}.activity-action{color:var(--text-2);margin-right:4px}.activity-target{font-weight:500;color:var(--primary)}.activity-time{font-size:.75rem;color:var(--text-3);margin-top:2px}.task-list{display:flex;flex-direction:column;gap:var(--space-2)}.task-item{display:flex;align-items:center;gap:var(--space-2);padding:var(--space-2);border-radius:var(--radius-sm)}.task-item:hover{background-color:var(--surface-2)}.modal-overlay{position:fixed;inset:0;background-color:#00000080;display:flex;align-items:center;justify-content:center;z-index:1000;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);animation:fadeIn var(--transition-fast)}.modal-container{background-color:var(--surface-1);border-radius:var(--radius-lg);width:100%;max-width:700px;box-shadow:var(--shadow-lg);animation:slideUp var(--transition-fast);display:flex;flex-direction:column;max-height:90vh}.modal-header{padding:var(--space-4);border-bottom:1px solid var(--border);display:flex;align-items:center;justify-content:space-between}.modal-title{font-size:1.25rem;font-weight:600}.modal-content{padding:var(--space-4);overflow-y:auto}.form-group{margin-bottom:var(--space-4)}.form-label{display:block;margin-bottom:var(--space-2);font-weight:500;color:var(--text-2);font-size:.9rem}.form-input,.form-select,.form-textarea{width:100%;padding:var(--space-2) var(--space-3);border:1px solid var(--border);border-radius:var(--radius-md);font-family:inherit;font-size:.95rem;background-color:var(--surface-2);transition:border-color var(--transition-fast)}.form-input:focus,.form-select:focus,.form-textarea:focus{outline:none;border-color:var(--primary);background-color:var(--surface-1)}.form-textarea{min-height:100px;resize:vertical}.form-actions{display:flex;justify-content:flex-end;gap:var(--space-3);margin-top:var(--space-4)}.btn-secondary{background-color:transparent;border:1px solid var(--border);color:var(--text-2);padding:var(--space-2) var(--space-4);border-radius:var(--radius-md);font-weight:500;transition:all var(--transition-fast)}.btn-secondary:hover{background-color:var(--surface-2);color:var(--text-1)}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes slideUp{0%{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}.documents-container{display:flex;flex-direction:column;gap:var(--space-4)}.page-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:var(--space-4)}.page-title{font-size:1.5rem}.btn-primary{background-color:var(--primary);color:#fff;border:none;padding:var(--space-2) var(--space-4);border-radius:var(--radius-md);font-weight:500;display:flex;align-items:center;gap:var(--space-2);transition:background-color var(--transition-fast)}.btn-primary:hover{background-color:var(--primary-dark)}.data-table-container{overflow-x:auto;overflow-y:visible;min-height:480px;padding-bottom:20px}.data-table{width:100%;border-collapse:collapse;margin-bottom:120px}.data-table th{text-align:left;padding:var(--space-3);border-bottom:2px solid var(--border);color:var(--text-2);font-weight:600;font-size:.9rem}.data-table td{padding:var(--space-3);border-bottom:1px solid var(--border);color:var(--text-1)}.data-table tr:last-child td{border-bottom:none}.data-table tr:hover{background-color:var(--surface-2)}.status-badge{padding:4px 8px;border-radius:var(--radius-full);font-size:.75rem;font-weight:600;text-transform:uppercase}.status-badge.effective{background-color:#2ecc7126;color:#27ae60}.status-badge.draft{background-color:#f1c40f26;color:#d35400}.status-badge.obsolete{background-color:#e74c3c26;color:#c0392b}.status-badge.review{background-color:#3498db26;color:#2980b9}.status-badge.pending-approval{background-color:#ff9f4326;color:#e67e22}.status-badge.pending-obsolete{background-color:#95a5a626;color:#7f8c8d;border:1px solid #7f8c8d}.filter-bar{display:flex;gap:var(--space-3);margin-bottom:var(--space-4)}.filter-select{padding:var(--space-2) var(--space-3);border:1px solid var(--border);border-radius:var(--radius-md);background-color:var(--surface-1);color:var(--text-1)}.dropdown-menu{position:absolute;top:100%;right:0;background-color:#fff;border:1px solid var(--border);border-radius:var(--radius-md);box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -2px #0000000d;z-index:1000;width:max-content;min-width:160px;padding:6px 0;margin-top:5px}.dropdown-item{display:flex;align-items:center;width:100%;padding:10px 16px;text-align:left;border:none;background:none;cursor:pointer;font-size:.9rem;color:var(--text-1);white-space:nowrap;transition:all .15s ease}.dropdown-item:hover{background-color:var(--surface-2);color:var(--primary)}.dropdown-divider{height:1px;background-color:var(--border);margin:4px 0}.dropdown-menu.drop-up{top:auto;bottom:100%;margin-top:0;margin-bottom:5px}.events-board{display:flex;gap:var(--space-4);overflow-x:auto;padding-bottom:var(--space-4);height:calc(100vh - 200px)}.kanban-column{flex:0 0 320px;background-color:var(--surface-3);border-radius:var(--radius-md);padding:var(--space-3);display:flex;flex-direction:column}.column-header{font-weight:600;margin-bottom:var(--space-3);color:var(--text-2);display:flex;justify-content:space-between;align-items:center}.column-count{background-color:var(--surface-1);padding:2px 8px;border-radius:var(--radius-full);font-size:.75rem}.event-card{background-color:var(--surface-1);border-radius:var(--radius-md);padding:var(--space-3);margin-bottom:var(--space-3);box-shadow:var(--shadow-sm);border:1px solid transparent;cursor:pointer;transition:all var(--transition-fast)}.event-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-md);border-color:var(--primary)}.event-id{font-size:.75rem;color:var(--text-3);font-family:monospace;margin-bottom:4px}.event-title{font-weight:600;color:var(--text-1);margin-bottom:var(--space-2)}.event-meta{display:flex;justify-content:space-between;align-items:center;margin-top:var(--space-2);font-size:.8rem}.priority-tag{font-size:.7rem;padding:2px 6px;border-radius:var(--radius-sm);text-transform:uppercase;font-weight:700}.priority-high{color:#e74c3c;background:#e74c3c1a}.priority-medium{color:#f39c12;background:#f1c40f1a}.priority-low{color:#2ecc71;background:#2ecc711a}.view-toggle{display:flex;background:var(--surface-1);padding:2px;border-radius:var(--radius-md);border:1px solid var(--border)}.toggle-btn{padding:4px 12px;border:none;background:none;font-size:.9rem;border-radius:var(--radius-sm)}.toggle-btn.active{background-color:var(--surface-3);font-weight:600}.issue-details-grid{display:flex;flex-direction:column;gap:1.5rem}.details-header-section{padding-bottom:20px;border-bottom:1px solid #e2e8f0}.details-main-content{display:grid;grid-template-columns:1fr 280px;gap:1.5rem}.lifecycle-stepper{display:flex;justify-content:space-between;margin-top:20px;position:relative;padding:0 10px}.lifecycle-stepper .step{display:flex;flex-direction:column;align-items:center;position:relative;flex:1;z-index:1}.step-point{width:28px;height:28px;border-radius:50%;background:#f1f5f9;border:2px solid #e2e8f0;display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:700;color:#94a3b8;transition:all .3s ease;background-color:#fff}.step-label{margin-top:8px;font-size:.75rem;font-weight:600;color:#94a3b8;text-align:center}.step.active .step-point{border-color:#2563eb;color:#2563eb;box-shadow:0 0 0 4px #2563eb1a}.step.active .step-label{color:#2563eb}.step.done .step-point{background:#10b981;border-color:#10b981;color:#fff}.step.done .step-label{color:#10b981}.step-line{position:absolute;top:14px;left:50%;width:100%;height:2px;background:#e2e8f0;z-index:-1}.step.done .step-line{background:#10b981}.details-panel{display:flex;flex-direction:column;gap:1.5rem}.panel-section{background:#fff;padding:1rem;border-radius:8px;border:1px solid #e2e8f0}.panel-section.highlight{background-color:#f0f9ff;border-color:#bae6fd}.panel-section.reviewer-panel{border:1px solid #bfdbfe;background-color:#eff6ff}.panel-title{font-size:.8rem;font-weight:700;color:#64748b;text-transform:uppercase;letter-spacing:.05em;margin-bottom:1rem;display:flex;align-items:center;gap:8px}.content-box{font-size:.95rem;color:#334155;line-height:1.6;white-space:pre-wrap;background:#f8fafc;padding:12px;border-radius:6px;border:1px solid #f1f5f9}.stakeholder-box{display:flex;flex-direction:column;gap:6px}.stakeholder-label{font-size:.75rem;font-weight:600;color:#94a3b8}.stakeholder-value{display:flex;align-items:center;gap:8px;padding:8px 12px;background:#f8fafc;border:1px solid #e2e8f0;border-radius:6px;font-size:.9rem;color:#334155;cursor:pointer;transition:all .2s}.stakeholder-value:hover{border-color:#2563eb;background:#fff}.btn-action{display:flex;align-items:center;justify-content:center;gap:8px;padding:10px;border-radius:6px;font-size:.9rem;font-weight:600;border:1px solid #d1d5db;background:#fff;cursor:pointer;transition:all .2s}.btn-action.primary{background-color:#2563eb;color:#fff;border-color:#2563eb}.btn-action.primary:hover{background-color:#1d4ed8}.btn-action.danger{color:#dc2626}.btn-action.danger:hover{background-color:#fee2e2;border-color:#fecaca}.timeline{display:flex;flex-direction:column;gap:1.25rem;padding-left:10px;position:relative;margin-left:5px}.timeline:before{content:"";position:absolute;left:0;top:5px;bottom:5px;width:2px;background:#e2e8f0}.timeline-item{position:relative;padding-left:20px}.timeline-marker{position:absolute;left:-4px;top:6px;width:10px;height:10px;border-radius:50%;background:#fff;border:2px solid #2563eb}.timeline-header{display:flex;justify-content:space-between;font-size:.75rem;margin-bottom:2px}.timeline-header strong{color:#1e293b}.timeline-header span{color:#94a3b8}.timeline-action{font-size:.85rem;color:#475467}.timeline-status{font-size:.75rem;font-weight:600;color:#2563eb;margin-top:4px}.severity-badge{padding:2px 10px;border-radius:20px;font-size:.75rem;font-weight:700;text-transform:uppercase}.status-tag{padding:4px 12px;border-radius:6px;font-weight:700;font-size:.8rem;letter-spacing:.5px}.status-new{background:#f1f5f9;color:#475467}.status-investigation{background:#fef3c7;color:#92400e}.status-review{background:#dbeafe;color:#1e40af}.status-plan-approval{background:#f3e8ff;color:#6b21a8}.status-closed{background:#d1fae5;color:#065f46}.projects-container{padding:2rem}.projects-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem;margin-top:1.5rem}.project-card{background:#fff;padding:1.5rem;border-radius:8px;box-shadow:0 2px 4px #0000001a;border:1px solid #eee;transition:transform .2s}.project-card:hover{transform:translateY(-2px);box-shadow:0 4px 8px #0000001a}.project-id{display:inline-block;background:#f0f2f5;padding:2px 6px;border-radius:4px;font-size:.8rem;color:#666;margin-bottom:.5rem}.status-badge{display:inline-block;padding:4px 8px;border-radius:12px;font-size:.85rem;background:#e3fcef;color:#064;margin-top:1rem;margin-right:1rem}.project-card button{margin-top:1rem;width:100%}.project-header{display:flex;justify-content:space-between;align-items:center}.progress-bar-container{height:10px;background:#eee;border-radius:5px;margin:1rem 0;overflow:hidden}.progress-bar{height:100%;background:#064;transition:width .3s ease}.slots-list{margin-top:1.5rem;border:1px solid #eaeaea;border-radius:12px;box-shadow:0 4px 6px -1px #0000000d;background:#fff;overflow:hidden}.slot-item{display:flex;justify-content:space-between;align-items:center;padding:1.25rem 1.5rem;border-bottom:1px solid #f1f3f5;transition:background-color .2s}.slot-item:hover{background-color:#f8f9fa}.slot-item:last-child{border-bottom:none}.slot-item.uploaded{background-color:#f9fffb}.slot-name{display:flex;align-items:center;gap:10px;font-weight:500}.status-pill{margin-left:10px;font-size:.7rem;padding:3px 10px;border-radius:20px;background:#f1f3f5;color:#495057;font-weight:600;text-transform:uppercase;letter-spacing:.5px}.status-approved{background:#e6fcf5;color:#0ca678;border:1px solid #0ca678}.status-pending-approval{background:#fff9db;color:#f08c00;border:1px solid #f08c00}.status-missing{background:#fff5f5;color:#e03131;border:1px solid #e03131}.btn-link{background:none;border:1px solid #ced4da;color:#495057;padding:4px 12px;border-radius:6px;font-size:.85rem;font-weight:500;cursor:pointer;transition:all .2s}.btn-link:hover{background-color:#f8f9fa;color:#228be6;border-color:#228be6}.btn-sm{padding:4px 10px;font-size:.8rem}.input-field{border:1px solid #ced4da;border-radius:6px;padding:.5rem;font-size:.9rem;background-color:#fff;transition:border-color .2s}.input-field:focus{outline:none;border-color:#339af0;box-shadow:0 0 0 2px #339af01a}.project-form .form-group{margin-bottom:1.25rem}.project-form label{display:block;margin-bottom:.5rem;font-weight:500;color:#495057;font-size:.95rem}.project-form input[type=text],.project-form textarea,.project-form select{width:100%;padding:.75rem;border:1px solid #ced4da;border-radius:6px;font-size:.95rem;transition:border-color .2s,box-shadow .2s;background-color:#fff}.project-form input[type=text]:focus,.project-form textarea:focus,.project-form select:focus{outline:none;border-color:#4c6ef5;box-shadow:0 0 0 3px #4c6ef526}.project-form textarea{min-height:100px;resize:vertical;font-family:inherit}.template-preview{margin-top:1rem;padding:1rem;background-color:#f8f9fa;border:1px solid #e9ecef;border-radius:6px}.template-preview small{display:block;margin-bottom:.5rem;color:#495057;text-transform:uppercase;font-size:.75rem;letter-spacing:.5px}.template-preview ul{margin:0;padding-left:1.2rem;color:#666;font-size:.9rem}.template-preview li{margin-bottom:4px}.requirements-list{margin-top:.5rem;max-height:150px;overflow-y:auto;border:1px solid #eee;padding:.5rem;border-radius:4px;background:#fff}.req-item{display:flex;align-items:center;padding:4px 0;font-size:.9rem}.req-item label{margin-bottom:0;cursor:pointer;display:flex;align-items:center;gap:8px;font-weight:400}.add-req-box{margin-top:.8rem;display:flex;gap:8px}.add-req-box input{flex:1;padding:.4rem;font-size:.85rem}.modal-actions{display:flex;justify-content:flex-end;gap:1rem;margin-top:2rem;padding-top:1.5rem;border-top:1px solid #eee}.btn-primary{background-color:#339af0;color:#fff;border:none;padding:.6rem 1.2rem;border-radius:6px;font-weight:500;transition:background-color .2s}.btn-primary:hover{background-color:#228be6}.btn-primary-outline{background-color:transparent;color:#339af0;border:1px solid #339af0;padding:.6rem 1.2rem;border-radius:6px;font-weight:500;transition:all .2s;cursor:pointer}.btn-primary-outline:hover{background-color:#e7f5ff;color:#228be6;border-color:#228be6}.btn-secondary{background-color:#f1f3f5;color:#495057;border:1px solid transparent;padding:.6rem 1.2rem;border-radius:6px;font-weight:500;transition:background-color .2s}.btn-secondary:hover{background-color:#e9ecef}.project-delete-btn{background:none;border:none;cursor:pointer;padding:6px;border-radius:50%;transition:background-color .2s,color .2s;display:flex;align-items:center;justify-content:center;color:#868e96}.project-delete-btn:hover{background-color:#ffe3e3;color:#e03131}.form-row{display:flex;gap:1rem}.form-row .form-group{flex:1}.issue-card{background:#fff;padding:1rem 1.25rem;border-radius:8px;border:1px solid #eaecf0;box-shadow:0 1px 2px #1018280d;margin-bottom:.75rem;transition:all .2s ease;display:flex;flex-direction:column;gap:.5rem;border-left:4px solid transparent}.issue-card:hover{transform:translateY(-2px);box-shadow:0 4px 6px -1px #1018281a,0 2px 4px -1px #1018280f}.issue-card.status-open-high{border-left-color:#f03e3e}.issue-card.status-open-med{border-left-color:#fd7e14}.issue-card.status-open-low{border-left-color:#fab005}.issue-card.status-closed{border-left-color:#40c057}.issue-header{display:flex;justify-content:space-between;align-items:flex-start}.issue-id{font-size:.75rem;color:#667085;font-weight:500;margin-bottom:.25rem;text-transform:uppercase;letter-spacing:.02em}.issue-title{font-size:1rem;font-weight:600;color:#101828;line-height:1.4}.issue-meta{display:flex;align-items:center;gap:12px;margin-top:.5rem;font-size:.85rem;color:#475467}.severity-badge{padding:2px 8px;border-radius:4px;font-size:.7rem;font-weight:600;text-transform:uppercase}.severity-high{background:#ffe3e3;color:#c92a2a}.severity-medium{background:#fff3bf;color:#e67700}.severity-low{background:#e3fafc;color:#0c8599}.kanban-card-override{cursor:pointer;border-left-width:4px}.tabs-nav{display:flex;gap:2rem;border-bottom:1px solid #e2e8f0;margin-bottom:2rem;margin-top:1rem}.tab-btn{position:relative;background:none;border:none;padding:1rem .5rem;font-size:.95rem;font-weight:600;color:#64748b;border-bottom:2px solid transparent;transition:all .2s ease;cursor:pointer;display:flex;align-items:center;gap:8px}.tab-btn:hover{color:#3b82f6}.tab-btn.active{color:#2563eb;border-bottom-color:#2563eb}.eco-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem}.eco-table-container{background:#fff;border-radius:8px;box-shadow:0 1px 3px #0000001a;border:1px solid #e2e8f0;overflow:hidden}.eco-table{width:100%;border-collapse:collapse}.eco-table th{background:#f8fafc;padding:12px 24px;text-align:left;font-size:.75rem;font-weight:700;text-transform:uppercase;color:#64748b;border-bottom:1px solid #e2e8f0}.eco-table td{padding:16px 24px;border-bottom:1px solid #f1f5f9;font-size:.9rem;color:#334155;vertical-align:middle}.eco-table tr:last-child td{border-bottom:none}.eco-table tr:hover td{background-color:#f8fafc;cursor:pointer}.modal-form-group{margin-bottom:1rem}.modal-form-group label{display:block;font-size:.875rem;font-weight:500;color:#374151;margin-bottom:.5rem}.modal-input,.modal-textarea,.modal-select{width:100%;padding:.625rem;border:1px solid #d1d5db;border-radius:.375rem;font-size:.9rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}.modal-input:focus,.modal-textarea:focus,.modal-select:focus{outline:none;border-color:#3b82f6;box-shadow:0 0 0 3px #3b82f61a}.stepper-container{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:2rem;overflow-x:auto;padding-bottom:.5rem}.step-item{display:flex;flex-direction:column;align-items:center;position:relative;flex:1;min-width:80px}.step-item:last-child{flex:0}.step-circle{width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.85rem;font-weight:600;z-index:10;background:#e2e8f0;color:#94a3b8;transition:all .2s}.step-item.completed .step-circle{background:#10b981;color:#fff}.step-item.current .step-circle{background:#2563eb;color:#fff;box-shadow:0 0 0 4px #dbeafe}.step-label{margin-top:.5rem;font-size:.75rem;font-weight:600;color:#94a3b8;text-align:center;white-space:nowrap}.step-item.current .step-label{color:#2563eb}.step-line{position:absolute;top:16px;left:50%;width:100%;height:3px;background:#e2e8f0;z-index:0}.eco-detail-view{background:#fff;border-radius:8px;box-shadow:0 1px 3px #0000001a;border:1px solid #e2e8f0;padding:1.5rem}.eco-detail-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:1px solid #f1f5f9}.eco-title{font-size:1.25rem;font-weight:700;color:#1e293b;margin-right:1rem}.eco-meta{color:#64748b;font-size:.875rem;margin-top:.25rem}.eco-section{margin-bottom:1.5rem}.eco-section-title{font-size:.75rem;font-weight:700;color:#64748b;text-transform:uppercase;letter-spacing:.05em;margin-bottom:.75rem}.eco-description-box{background:#f8fafc;padding:1rem;border-radius:6px;border:1px solid #e2e8f0;font-size:.9rem;color:#334155;white-space:pre-wrap;line-height:1.5}.eco-history-list{display:flex;flex-direction:column;gap:.75rem}.eco-history-item{display:flex;gap:1rem;font-size:.875rem}.eco-history-date{color:#94a3b8;font-family:monospace;flex-shrink:0;width:80px}.eco-history-content{color:#334155}.eco-toolbar{margin-top:2rem;padding-top:1.5rem;border-top:1px solid #e2e8f0;display:flex;gap:1rem;flex-wrap:wrap}.eco-stakeholder-list{list-style:none;padding:0;margin:0}.eco-stakeholder-item{display:flex;align-items:center;justify-content:space-between;padding:.75rem 0;border-bottom:1px solid #f1f5f9}.eco-stakeholder-item:last-child{border-bottom:none}.eco-stakeholder-info{display:flex;align-items:center;gap:.75rem}.eco-avatar{width:2rem;height:2rem;border-radius:50%;background:#e2e8f0;display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:700;color:#64748b}.eco-stakeholder-details{display:flex;flex-direction:column}.eco-stakeholder-name{font-size:.875rem;font-weight:600;color:#1e293b}.eco-stakeholder-role{font-size:.75rem;color:#64748b}.eco-approval-status{display:flex;align-items:center;gap:.25rem;font-size:.75rem;font-weight:600}.status-approved-text{color:#10b981}.status-pending-text{color:#f59e0b}.status-rejected-text{color:#ef4444}.btn-approve{background-color:#10b981;color:#fff;border:none;padding:.6rem 1.2rem;border-radius:6px;font-weight:500}.btn-approve:hover{background-color:#059669}.btn-reject{background-color:#fee2e2;color:#dc2626;border:1px solid #fecaca;padding:.6rem 1.2rem;border-radius:6px;font-weight:500}.btn-reject:hover{background-color:#fca5a5}.btn-action{background-color:#8b5cf6;color:#fff;border:none;padding:.6rem 1.2rem;border-radius:6px;font-weight:500}.btn-action:hover{background-color:#7c3aed}.calibration-container{padding:2rem;max-width:1400px;margin:0 auto}.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.5rem;margin-bottom:2rem}.stat-card{background:#fff;padding:1.5rem;border-radius:8px;box-shadow:0 1px 3px #0000001a;border-left:4px solid transparent}.stat-card.blue{border-left-color:#339af0}.stat-card.green{border-left-color:#40c057}.stat-card.yellow{border-left-color:#fcc419}.stat-card.red{border-left-color:#fa5252}.stat-title{font-size:.9rem;color:#868e96;margin-bottom:.5rem;text-transform:uppercase;letter-spacing:.5px}.stat-value{font-size:2rem;font-weight:700;color:#343a40}.cal-badge{padding:4px 8px;border-radius:4px;font-size:.8rem;font-weight:600;text-transform:uppercase}.cal-badge.active{background-color:#ebfbee;color:#2b8a3e}.cal-badge.due-soon{background-color:#fff9db;color:#f08c00}.cal-badge.overdue{background-color:#fff5f5;color:#c92a2a}.cal-badge.out-of-tolerance{background-color:#fff5f5;color:#c92a2a;border:1px solid #ffc9c9}.cal-badge.retired{background-color:#f8f9fa;color:#868e96}.history-list{max-height:300px;overflow-y:auto;border:1px solid #eee;border-radius:4px}.history-item{padding:1rem;border-bottom:1px solid #eee;display:flex;justify-content:space-between;align-items:center}.history-item:last-child{border-bottom:none}.history-result{font-weight:700}.history-result.pass{color:green}.history-result.fail{color:red}.risk-modal{display:flex;flex-direction:column;gap:1.5rem}.risk-modal h3{margin-top:0;margin-bottom:1.5rem;font-size:1.5rem;padding-bottom:1rem;border-bottom:1px solid #eee;color:#2c3e50}.assessment-panel{background-color:#f0fff4;border:1px solid #c3e6cb;border-radius:8px;padding:1.25rem;margin-bottom:1.5rem;position:relative;overflow:hidden}.assessment-panel:before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;background-color:#2ecc71}.assessment-label{display:block;font-weight:600;color:#27ae60;margin-bottom:1rem;font-size:.95rem;display:flex;align-items:center;gap:.5rem}.assessment-hint{font-size:.85rem;color:#555;margin-top:.75rem;font-style:italic;background:#fff9;padding:.5rem;border-radius:4px}.form-control{width:100%;padding:.75rem 1rem;border:1px solid #dfe6e9;border-radius:6px;font-size:.95rem;color:#2d3436;transition:all .2s;background:#fff;box-shadow:0 1px 2px #0000000d}.description-field{min-height:100px}.risk-table-row{transition:background-color .1s}.risk-table-row:hover{background-color:#f8f9fa}.risk-closed{opacity:.6;background-color:#fdfdfd}.status-cell .status-red{background-color:#ffe3e3;color:#c92a2a;padding:2px 8px;border-radius:12px}.status-cell .status-orange{background-color:#fff3bf;color:#e67700;padding:2px 8px;border-radius:12px}.status-cell .status-green{background-color:#dfffdf;color:#2b8a3e;padding:2px 8px;border-radius:12px}.supplier-modal{display:flex;flex-direction:column;gap:1.5rem}.supplier-modal h3{margin-top:0;margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:1px solid #eee;color:#2c3e50;font-size:1.4rem}.badge{padding:4px 10px;border-radius:20px;font-size:.75rem;font-weight:600;text-transform:uppercase;display:inline-block}.badge-approved{background-color:#d4edda;color:#155724}.badge-conditional{background-color:#fff3cd;color:#856404}.badge-disqualified{background-color:#f8d7da;color:#721c24}.rating-display{color:#f1c40f;font-weight:700;display:flex;align-items:center;gap:4px}.date-ok{color:#2ecc71}.date-warning{color:#e67e22;font-weight:700}.date-overdue{color:#e74c3c;font-weight:700}.form-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:1rem}.input-label{display:block;margin-bottom:.5rem;font-weight:500;color:#34495e;font-size:.9rem}.form-control{width:100%;padding:.75rem 1rem;border:1px solid #dfe6e9;border-radius:6px;font-size:.95rem;color:#2d3436;background:#fff;transition:all .2s}.form-control:focus{border-color:#3498db;box-shadow:0 0 0 3px #3498db1a;outline:none}textarea.form-control{min-height:80px;resize:vertical}:root{--primary-hue: 220;--primary-sat: 90%;--primary-light: 60%;--primary: hsl(var(--primary-hue), var(--primary-sat), 50%);--primary-dark: hsl(var(--primary-hue), var(--primary-sat), 40%);--primary-bg: hsl(var(--primary-hue), var(--primary-sat), 96%);--surface-1: #ffffff;--surface-2: #f8f9fa;--surface-3: #e9ecef;--text-1: #212529;--text-2: #495057;--text-3: #868e96;--border: #dee2e6;--success: #2ecc71;--warning: #f1c40f;--danger: #e74c3c;--info: #3498db;--space-1: .25rem;--space-2: .5rem;--space-3: 1rem;--space-4: 1.5rem;--space-5: 2rem;--space-6: 3rem;--radius-sm: 4px;--radius-md: 8px;--radius-lg: 12px;--radius-full: 9999px;--shadow-sm: 0 1px 2px rgba(0,0,0,.05);--shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);--shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);--transition-fast: .15s ease;--transition-normal: .25s ease}*{box-sizing:border-box;margin:0;padding:0}body{font-family:Inter,system-ui,-apple-system,sans-serif;color:var(--text-1);background-color:var(--surface-2);line-height:1.5;-webkit-font-smoothing:antialiased}a{color:var(--primary);text-decoration:none;transition:color var(--transition-fast)}a:hover{color:var(--primary-dark)}button{font-family:inherit;cursor:pointer}h1,h2,h3,h4,h5,h6{line-height:1.2;font-weight:600;color:var(--text-1)}.container{max-width:1280px;margin:0 auto;padding:0 var(--space-4)}.card{background:var(--surface-1);border-radius:var(--radius-md);border:1px solid var(--border);padding:var(--space-4);box-shadow:--shadow-sm}
