*{box-sizing:border-box;margin:0;padding:0}:root{--sidebar-width:250px;--primary-color:#6366f1;--primary-hover:#4f46e5;--bg-color:#0f172a;--sidebar-bg:#1e293b;--sidebar-text:#e2e8f0;--card-bg:#1e293b;--text-color:#e2e8f0;--text-muted:#9ca3af;--border-color:rgba(255,255,255,0.1)}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,sans-serif;background-color:var(--bg-color);color:var(--text-color)}.app-container{display:flex;min-height:100vh}.sidebar{width:var(--sidebar-width);background-color:var(--sidebar-bg);color:var(--sidebar-text);padding:1.5rem;position:fixed;height:100vh;display:flex;flex-direction:column}.sidebar .logo h1{font-size:1.25rem;font-weight:600;margin-bottom:2rem;padding-bottom:1rem;border-bottom:1px solid rgba(255,255,255,.1)}.sidebar-nav{flex:1 1;overflow-y:auto}.sidebar-user{padding-top:1rem;border-top:1px solid rgba(255,255,255,.1);margin-top:auto;overflow:hidden}.main-content{margin-left:var(--sidebar-width);padding:2rem;flex:1 1;background-color:#0f172a}.main-content [id]{scroll-margin-top:1.5rem}.page-header{margin-bottom:2rem}.page-header h1{font-size:1.875rem;font-weight:600;margin-bottom:.5rem}.page-header p{color:var(--text-muted)}.page-header-bar{margin:-2rem -2rem 2rem;padding:1.5rem 2rem;background:linear-gradient(180deg,rgba(30,41,59,.6),rgba(15,23,42,0));border-bottom:1px solid rgba(255,255,255,.06)}.page-header-bar-inner{display:flex;justify-content:space-between;align-items:flex-start;gap:1rem;flex-wrap:wrap}.page-header-bar-left{display:flex;flex-direction:column;gap:.25rem;min-width:0;flex:1 1}.page-header-breadcrumbs{gap:0;margin-bottom:.25rem}.page-header-breadcrumb-item,.page-header-breadcrumbs{display:flex;align-items:center}.page-header-breadcrumb-link{display:inline-flex;align-items:center;color:#6b7280;font-size:.8rem;font-weight:500;text-decoration:none;transition:color .15s ease}.page-header-breadcrumb-link:hover{color:#a5b4fc}.page-header-breadcrumb-sep{color:rgba(255,255,255,.15);margin:0 .5rem;font-size:.75rem;-webkit-user-select:none;-moz-user-select:none;user-select:none}.page-header-breadcrumb-item:last-child .page-header-breadcrumb-sep{display:none}.page-header-bar-title{font-size:1.75rem;font-weight:700;color:#ffffff;letter-spacing:-.025em;margin:0;line-height:1.2}.page-header-bar-subtitle{font-size:.95rem;color:#9ca3af;margin:.125rem 0 0;line-height:1.4}.page-header-bar-actions{display:flex;align-items:center;gap:.75rem;flex-shrink:0;padding-top:.25rem}@media (max-width:640px){.page-header-bar{margin:-2rem -1rem 1.5rem;padding:1.25rem 1rem}.page-header-bar-title{font-size:1.375rem}.page-header-bar-inner{flex-direction:column;align-items:stretch}.page-header-bar-actions{padding-top:.75rem}}.card{background-color:var(--card-bg);border-radius:.75rem;padding:1.5rem;box-shadow:0 1px 3px rgba(0,0,0,.1);margin-bottom:1.5rem}.card h2{font-size:1.25rem;margin-bottom:1rem}.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));grid-gap:1.5rem;gap:1.5rem;margin-bottom:2rem}.stat-card{background-color:var(--card-bg);border-radius:.75rem;padding:1.5rem;box-shadow:0 1px 3px rgba(0,0,0,.1)}.stat-card .label{color:var(--text-muted);font-size:.875rem;margin-bottom:.5rem}.stat-card .value{font-size:2rem;font-weight:600}.btn{display:inline-flex;align-items:center;justify-content:center;padding:.75rem 1.5rem;border-radius:.5rem;font-size:1rem;font-weight:500;cursor:pointer;transition:all .2s;text-decoration:none;border:none}.btn-primary{background-color:var(--primary-color);color:white}.btn-primary:hover{background-color:var(--primary-hover)}.btn-secondary{background-color:var(--border-color);color:var(--text-color)}.btn-secondary:hover{background-color:#cbd5e1}.btn:disabled{opacity:.5;cursor:not-allowed}.btn-primary:disabled:hover{background-color:var(--primary-color)}.btn-secondary:disabled:hover{background-color:var(--border-color)}.form-group{margin-bottom:1.5rem}.form-group label{display:block;font-weight:500;margin-bottom:.5rem}.form-group input,.form-group select,.form-group textarea{width:100%;padding:.75rem;border:1px solid var(--border-color);border-radius:.5rem;font-size:1rem}.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--primary-color);box-shadow:0 0 0 3px rgba(37,99,235,.1)}.form-hint{font-size:.875rem;color:var(--text-muted);margin-top:.25rem}.projects-list{display:grid;grid-gap:1rem;gap:1rem}.project-card{background-color:var(--card-bg);border-radius:.75rem;padding:1.5rem;box-shadow:0 1px 3px rgba(0,0,0,.1);display:flex;justify-content:space-between;align-items:center}.project-info h3{font-size:1.125rem;margin-bottom:.25rem}.project-info .meta{color:var(--text-muted);font-size:.875rem}.project-actions{display:flex;gap:.5rem}.steps{display:flex;margin-bottom:2rem}.step{flex:1 1;text-align:center;padding:1rem;position:relative}.step:after{content:"";position:absolute;top:50%;right:0;width:50%;height:2px;background-color:var(--border-color)}.step:last-child:after{display:none}.step.active .step-number{background-color:var(--primary-color);color:white}.step.completed .step-number{background-color:#10b981;color:white}.step-number{width:2rem;height:2rem;border-radius:50%;background-color:var(--border-color);display:inline-flex;align-items:center;justify-content:center;font-weight:600;margin-bottom:.5rem}.step-label{font-size:.875rem;color:var(--text-muted)}.upload-zone{border:2px dashed var(--border-color);border-radius:.75rem;padding:3rem;text-align:center;cursor:pointer;transition:all .2s}.upload-zone:hover{border-color:var(--primary-color);background-color:rgba(37,99,235,.05)}.upload-zone p{color:var(--text-muted);margin-bottom:1rem}select{cursor:pointer;-moz-appearance:none;appearance:none;-webkit-appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .75rem center;padding-right:2.25rem!important}select option{background-color:#1e293b;color:#e2e8f0;padding:.5rem}.editor-container{padding:0 2rem}@media (max-width:640px){.editor-container{padding:0}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes shimmer{0%{background-position:-200% 0}to{background-position:200% 0}}