@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap");:root{--primary:#16a34a;--primary-light:#22c55e;--primary-dark:#15803d;--primary-50:#f0fdf4;--primary-100:#dcfce7;--primary-200:#bbf7d0;--gray-50:#f8fafc;--gray-100:#f1f5f9;--gray-200:#e2e8f0;--gray-300:#cbd5e1;--gray-400:#94a3b8;--gray-500:#64748b;--gray-600:#475569;--gray-700:#334155;--gray-800:#1e293b;--gray-900:#0f172a;--success:#22c55e;--warning:#f59e0b;--danger:#ef4444;--info:#3b82f6;--sidebar-width:260px;--topbar-height:64px;--radius-sm:8px;--radius-md:12px;--radius-lg:16px;--radius-full:9999px;--shadow-sm:0 1px 2px rgba(0,0,0,0.04);--shadow-md:0 4px 12px rgba(0,0,0,0.06);--shadow-lg:0 8px 24px rgba(0,0,0,0.08)}*{margin:0;padding:0;box-sizing:border-box}body{font-family:Space Grotesk,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif;background:var(--gray-50);color:var(--gray-800);line-height:1.6;-webkit-font-smoothing:antialiased}a{color:var(--primary);text-decoration:none}a:hover{text-decoration:underline}.layout{display:flex;min-height:100vh}.sidebar{width:var(--sidebar-width);background:var(--gray-900);color:white;display:flex;flex-direction:column;position:fixed;top:0;left:0;bottom:0;z-index:100;overflow-y:auto}.sidebar-brand{padding:1.25rem 1.5rem;font-size:1.25rem;font-weight:700;letter-spacing:-.02em;border-bottom:1px solid rgba(255,255,255,.08);display:flex;align-items:center;gap:.625rem}.sidebar-brand-dot{width:8px;height:8px;background:var(--primary-light);border-radius:50%;display:inline-block}.sidebar-nav{padding:1rem .75rem;flex:1 1;display:flex;flex-direction:column;gap:2px}.sidebar-link{display:flex;align-items:center;gap:.75rem;padding:.625rem .75rem;border-radius:var(--radius-sm);color:var(--gray-400);font-size:.875rem;font-weight:500;transition:all .15s;text-decoration:none}.sidebar-link:hover{color:white;background:rgba(255,255,255,.06);text-decoration:none}.sidebar-link.active{color:white;background:rgba(34,197,94,.12)}.sidebar-link.active:before{content:"";position:absolute;left:0;width:3px;height:20px;background:var(--primary-light);border-radius:0 4px 4px 0}.sidebar-icon{width:20px;height:20px;opacity:.7}.sidebar-section{padding:1.25rem .75rem .5rem;font-size:.6875rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--gray-500)}.sidebar-footer{padding:1rem .75rem;border-top:1px solid rgba(255,255,255,.08)}.sidebar-user{gap:.75rem;padding:.5rem .75rem;border-radius:var(--radius-sm)}.sidebar-avatar,.sidebar-user{display:flex;align-items:center}.sidebar-avatar{width:36px;height:36px;border-radius:50%;background:var(--primary);justify-content:center;font-size:.8125rem;font-weight:600;color:white}.sidebar-user-info{flex:1 1;min-width:0}.sidebar-user-name{font-size:.8125rem;font-weight:600;color:white;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.sidebar-user-role{font-size:.6875rem;color:var(--gray-500)}.main-content{flex:1 1;margin-left:var(--sidebar-width);min-height:100vh}.topbar{height:var(--topbar-height);background:white;border-bottom:1px solid var(--gray-200);display:flex;align-items:center;justify-content:space-between;padding:0 2rem;position:-webkit-sticky;position:sticky;top:0;z-index:50}.topbar-title{font-size:1.125rem;font-weight:600;color:var(--gray-900)}.topbar-actions{display:flex;align-items:center;gap:.75rem}.page{padding:1.5rem 2rem 3rem}.page-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.5rem}.page-title{font-size:1.5rem;font-weight:700;color:var(--gray-900);letter-spacing:-.02em}.page-subtitle{font-size:.875rem;color:var(--gray-500);margin-top:.25rem}.stat-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));grid-gap:1rem;gap:1rem;margin-bottom:1.5rem}.stat-card{background:white;border-radius:var(--radius-md);border:1px solid var(--gray-200);padding:1.25rem 1.5rem;transition:box-shadow .15s}.stat-card:hover{box-shadow:var(--shadow-md)}.stat-label{font-size:.75rem;font-weight:600;color:var(--gray-500);text-transform:uppercase;letter-spacing:.05em;margin-bottom:.5rem}.stat-value{font-size:1.75rem;font-weight:700;color:var(--gray-900);letter-spacing:-.02em;line-height:1.2}.stat-change{font-size:.75rem;font-weight:500;margin-top:.375rem;display:inline-flex;align-items:center;gap:.25rem;padding:.125rem .5rem;border-radius:var(--radius-full)}.stat-change.up{color:var(--success);background:var(--primary-50)}.stat-change.down{color:var(--danger);background:#fef2f2}.stat-card.accent{background:var(--gray-900);border-color:var(--gray-900)}.stat-card.accent .stat-label{color:var(--gray-400)}.stat-card.accent .stat-value{color:white}.card{background:white;border-radius:var(--radius-md);border:1px solid var(--gray-200);padding:1.5rem;transition:box-shadow .15s}.card:hover{box-shadow:var(--shadow-sm)}.card-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:1rem}.card-title{font-size:.9375rem;font-weight:600;color:var(--gray-900)}.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.5rem 1rem;border-radius:var(--radius-sm);font-family:Space Grotesk,sans-serif;font-size:.8125rem;font-weight:600;cursor:pointer;border:none;transition:all .15s;white-space:nowrap}.btn,.btn:hover{text-decoration:none}.btn-primary{background:var(--primary);color:white}.btn-primary:hover{background:var(--primary-dark)}.btn-secondary{background:var(--gray-100);color:var(--gray-700);border:1px solid var(--gray-200)}.btn-secondary:hover{background:var(--gray-200)}.btn-danger{background:var(--danger);color:white}.btn-danger:hover{background:#dc2626}.btn-success{background:var(--success);color:white}.btn-success:hover{background:var(--primary-dark)}.btn-ghost{background:transparent;color:var(--gray-600)}.btn-ghost:hover{background:var(--gray-100)}.btn-sm{padding:.3125rem .625rem;font-size:.75rem}.btn-lg{padding:.75rem 1.5rem;font-size:.9375rem}.btn:disabled{opacity:.5;cursor:not-allowed}.form-group{margin-bottom:1.25rem}.form-group label{display:block;font-size:.8125rem;font-weight:600;color:var(--gray-700);margin-bottom:.375rem}.form-group input,.form-group select,.form-group textarea{width:100%;padding:.625rem .875rem;border:1px solid var(--gray-300);border-radius:var(--radius-sm);font-family:Space Grotesk,sans-serif;font-size:.875rem;color:var(--gray-800);background:white;outline:none;transition:border-color .15s,box-shadow .15s}.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--primary);box-shadow:0 0 0 3px var(--primary-100)}.form-group input::placeholder{color:var(--gray-400)}table{width:100%;border-collapse:collapse}table td,table th{text-align:left;padding:.75rem 1rem;border-bottom:1px solid var(--gray-100)}table th{font-size:.6875rem;font-weight:600;color:var(--gray-500);text-transform:uppercase;letter-spacing:.06em;background:var(--gray-50)}table td{font-size:.8125rem;color:var(--gray-700)}table tbody tr:hover{background:var(--gray-50)}table tbody tr:last-child td{border-bottom:none}.badge{display:inline-flex;align-items:center;gap:.25rem;padding:.1875rem .625rem;border-radius:var(--radius-full);font-size:.6875rem;font-weight:600;letter-spacing:.01em}.badge-pending{background:#fef3c7;color:#92400e}.badge-active,.badge-approved{background:var(--primary-100);color:var(--primary-dark)}.badge-rejected{background:#fee2e2;color:#991b1b}.badge-paid{background:#dbeafe;color:#1e40af}.auth-container{min-height:100vh;display:flex;align-items:center;justify-content:center;background:var(--gray-50);padding:2rem}.auth-card{background:white;border-radius:var(--radius-lg);border:1px solid var(--gray-200);box-shadow:var(--shadow-lg);padding:2.5rem;width:100%;max-width:420px}.auth-card h1{font-size:1.5rem;font-weight:700;margin-bottom:.25rem;text-align:center;color:var(--gray-900);letter-spacing:-.02em}.auth-card .auth-subtitle{text-align:center;color:var(--gray-500);font-size:.875rem;margin-bottom:1.75rem}.auth-card .btn{width:100%;margin-top:.5rem;padding:.75rem}.auth-logo{text-align:center;margin-bottom:1.75rem;font-size:1.375rem;font-weight:700;color:var(--gray-900);letter-spacing:-.02em}.auth-logo .dot{display:inline-block;width:8px;height:8px;background:var(--primary-light);border-radius:50%;margin-right:.375rem;vertical-align:middle}.error-message{background:#fef2f2;color:#991b1b;border-radius:var(--radius-sm);border:1px solid #fecaca}.error-message,.success-message{padding:.625rem .875rem;font-size:.8125rem;margin-bottom:1rem}.success-message{background:var(--primary-50);color:var(--primary-dark);border-radius:var(--radius-sm);border:1px solid var(--primary-200)}.info-message{background:#eff6ff;color:#1e40af;border-radius:var(--radius-sm);border:1px solid #bfdbfe}.info-message,.warning-message{padding:.625rem .875rem;font-size:.8125rem;margin-bottom:1rem}.warning-message{background:#fffbeb;color:#92400e;border-radius:var(--radius-sm);border:1px solid #fde68a}.code-block{font-family:SF Mono,Fira Code,monospace;font-size:.75rem;background:var(--gray-900);color:var(--primary-light);padding:.75rem 1rem;border-radius:var(--radius-sm);word-break:break-all;line-height:1.5}.empty-state{text-align:center;padding:3rem 2rem;color:var(--gray-500)}.empty-state-icon{font-size:2.5rem;margin-bottom:1rem;opacity:.4}.empty-state-title{font-size:1rem;font-weight:600;color:var(--gray-700);margin-bottom:.5rem}.empty-state-text{font-size:.8125rem;color:var(--gray-500);margin-bottom:1.25rem}.nav{background:white;border-bottom:1px solid var(--gray-200);padding:.75rem 0}.nav-inner{display:flex;align-items:center;justify-content:space-between;max-width:1200px;margin:0 auto;padding:0 1.5rem}.nav-brand{font-size:1.25rem;font-weight:700;color:var(--gray-900);letter-spacing:-.02em}.nav-brand,.nav-brand:hover{text-decoration:none}.nav-links{display:flex;gap:1.5rem;align-items:center}.container{max-width:1200px;margin:0 auto;padding:0 1.5rem}.text-muted{color:var(--gray-500)}.text-sm{font-size:.8125rem}.text-xs{font-size:.75rem}.font-mono{font-family:SF Mono,Fira Code,monospace}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-4{margin-top:1rem}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}