:root { --primary: #2563eb; --primary-hover: #1d4ed8; --secondary: #64748b; --bg-color: #f8fafc; --surface: #ffffff; --border: #e2e8f0; --text-main: #0f172a; --text-muted: #64748b; --success: #10b981; --warning: #f59e0b; --danger: #ef4444; --radius: 6px; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: var(--bg-color); color: var(--text-main); line-height: 1.5; margin: 0; } .navbar { background-color: var(--surface); border-bottom: 1px solid var(--border); padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; } .navbar-brand { font-weight: 700; font-size: 1.25rem; color: var(--primary); text-decoration: none; } .nav-links { display: flex; gap: 1.5rem; } .nav-link { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; } .nav-link:hover, .nav-link.active { color: var(--primary); } .container { max-width: 1200px; margin: 2rem auto; padding: 0 1rem; } .card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.1); margin-bottom: 1.5rem; } .card-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 1.25rem; display: flex; justify-content: space-between; align-items: center; } .btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500; border-radius: var(--radius); cursor: pointer; transition: all 0.2s; border: 1px solid transparent; text-decoration: none; } .btn-primary { background-color: var(--primary); color: white; } .btn-primary:hover { background-color: var(--primary-hover); } .btn-outline { border-color: var(--border); background-color: transparent; color: var(--text-muted); } .btn-outline:hover { background-color: #f1f5f9; color: var(--text-main); } .table { width: 100%; border-collapse: collapse; } .table th, .table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border); } .table th { font-size: 0.75rem; text-transform: uppercase; color: var(--text-muted); font-weight: 600; } .badge { display: inline-flex; padding: 0.25rem 0.5rem; font-size: 0.75rem; font-weight: 600; border-radius: 9999px; text-transform: capitalize; } .badge-onboarding { background: #dbeafe; color: #1e40af; } .badge-active { background: #dcfce7; color: #166534; } .badge-inactive { background: #f1f5f9; color: #475569; } .checklist-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border); } .checklist-item:last-child { border-bottom: none; } .checklist-item input[type="checkbox"] { width: 1.25rem; height: 1.25rem; cursor: pointer; } .checklist-item.completed span { text-decoration: line-through; color: var(--text-muted); } .form-group { margin-bottom: 1.25rem; } .form-label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; } .form-control { width: 100%; padding: 0.5rem 0.75rem; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.875rem; } .form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1); } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; } .stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; } .stat-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; } .stat-value { font-size: 1.5rem; font-weight: 700; margin-top: 0.25rem; }