@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";:root{--color-bg-primary:#0f1115;--color-bg-secondary:#1a1d24;--color-bg-surface:#252a34;--color-bg-surface-hover:#2e3440;--color-text-primary:#f8f9fa;--color-text-secondary:#adb5bd;--color-text-muted:#6c757d;--color-accent-primary:#3b82f6;--color-accent-primary-hover:#2563eb;--color-accent-secondary:#6366f1;--color-success:#10b981;--color-danger:#ef4444;--color-warning:#f59e0b;--color-border:#2e3440;--color-border-light:#373e4d;--font-family-base:"Inter", system-ui, -apple-system, sans-serif;--radius-sm:4px;--radius-md:8px;--radius-lg:12px;--radius-xl:16px;--radius-full:9999px;--shadow-sm:0 1px 2px 0 #0003;--shadow-md:0 4px 6px -1px #0000004d, 0 2px 4px -1px #0003;--shadow-lg:0 10px 15px -3px #0006, 0 4px 6px -2px #0003;--transition-fast:.15s ease-in-out;--transition-normal:.25s ease-in-out}*{box-sizing:border-box;margin:0;padding:0}body{font-family:var(--font-family-base);background-color:var(--color-bg-primary);color:var(--color-text-primary);-webkit-font-smoothing:antialiased;line-height:1.5;position:relative}body:before{content:"";opacity:.025;pointer-events:none;z-index:-1;background-image:url(/logo.png);background-position:50%;background-repeat:no-repeat;background-size:contain;width:700px;height:700px;position:fixed;top:50%;left:50%;transform:translate(-50%,-50%)}h1,h2,h3,h4,h5,h6{color:var(--color-text-primary);font-weight:600;line-height:1.2}h1{margin-bottom:1rem;font-size:2rem}h2{margin-bottom:.75rem;font-size:1.5rem}a{color:var(--color-accent-primary);transition:color var(--transition-fast);text-decoration:none}a:hover{color:var(--color-accent-primary-hover)}.app-container{min-height:100vh;display:flex}.sidebar{background-color:var(--color-bg-secondary);border-right:1px solid var(--color-border);width:260px;transition:width var(--transition-normal);flex-direction:column;display:flex}.sidebar-header{border-bottom:1px solid var(--color-border);align-items:center;gap:.75rem;padding:1.5rem;display:flex}.sidebar-logo-text{background:linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary));-webkit-text-fill-color:transparent;-webkit-background-clip:text;font-size:1.25rem;font-weight:700}.sidebar-nav{flex-direction:column;flex:1;gap:.5rem;padding:1rem;display:flex}.nav-link{border-radius:var(--radius-md);color:var(--color-text-secondary);transition:all var(--transition-fast);align-items:center;gap:.75rem;padding:.75rem 1rem;font-weight:500;display:flex}.nav-link:hover{background-color:var(--color-bg-surface);color:var(--color-text-primary);transform:translate(4px)}.nav-link.active{color:var(--color-accent-primary);border-left:3px solid var(--color-accent-primary);background-color:#3b82f61a}.main-content{background-color:#0000;flex-direction:column;flex:1;display:flex;overflow-y:auto}.topbar{background-color:var(--color-bg-primary);border-bottom:1px solid var(--color-border);z-index:10;justify-content:space-between;align-items:center;height:64px;padding:0 2rem;display:flex;position:sticky;top:0}.page-container{width:100%;max-width:1200px;margin:0 auto;padding:2rem}.card{background-color:var(--color-bg-secondary);border:1px solid var(--color-border);border-radius:var(--radius-lg);box-shadow:var(--shadow-md);transition:box-shadow var(--transition-normal), transform var(--transition-normal);padding:1.5rem}.card:hover{box-shadow:var(--shadow-lg)}.btn{border-radius:var(--radius-md);cursor:pointer;transition:all var(--transition-fast);border:none;outline:none;justify-content:center;align-items:center;gap:.5rem;padding:.625rem 1.25rem;font-size:.875rem;font-weight:500;display:inline-flex}.btn-primary{background-color:var(--color-accent-primary);color:#fff;box-shadow:0 4px 10px #3b82f64d}.btn-primary:hover{background-color:var(--color-accent-primary-hover);transform:translateY(-1px)}.btn-secondary{background-color:var(--color-bg-surface);color:var(--color-text-primary);border:1px solid var(--color-border-light)}.btn-secondary:hover{background-color:var(--color-bg-surface-hover)}.btn-danger{color:var(--color-danger);background-color:#ef44441a}.btn-danger:hover{background-color:var(--color-danger);color:#fff}.form-group{margin-bottom:1.5rem}.form-label{color:var(--color-text-secondary);margin-bottom:.5rem;font-size:.875rem;font-weight:500;display:block}.form-control{background-color:var(--color-bg-surface);border:1px solid var(--color-border-light);border-radius:var(--radius-md);width:100%;color:var(--color-text-primary);transition:border-color var(--transition-fast), box-shadow var(--transition-fast);padding:.625rem 1rem;font-family:inherit}.form-control:focus{border-color:var(--color-accent-primary);outline:none;box-shadow:0 0 0 3px #3b82f633}.form-row{gap:1rem;display:flex}.form-row>*{flex:1}.table-container{border-radius:var(--radius-lg);border:1px solid var(--color-border);background-color:var(--color-bg-secondary);width:100%;overflow-x:auto}.table{border-collapse:collapse;text-align:left;width:100%}.table th{color:var(--color-text-secondary);border-bottom:1px solid var(--color-border);background-color:#ffffff05;padding:1rem;font-size:.875rem;font-weight:600}.table td{color:var(--color-text-primary);border-bottom:1px solid var(--color-border);padding:1rem;font-size:.875rem}.table tbody tr:last-child td{border-bottom:none}.table tbody tr{transition:background-color var(--transition-fast)}.table tbody tr:hover{background-color:var(--color-bg-surface)}.badge{border-radius:var(--radius-full);text-transform:uppercase;letter-spacing:.05em;align-items:center;padding:.25rem .5rem;font-size:.75rem;font-weight:600;display:inline-flex}.badge-state{color:var(--color-accent-primary);background-color:#3b82f61a}.badge-ugc{color:var(--color-accent-secondary);background-color:#6366f11a}.badge-temporary{color:var(--color-warning);background-color:#f59e0b1a}.badge-contract{color:var(--color-success);background-color:#10b9811a}@keyframes fadeIn{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.epf-preview-overlay,.paybill-preview-overlay,.supplementary-preview-overlay,.employees-preview-overlay,.surrender-preview-overlay,.arrear-preview-overlay,.festival-preview-overlay{color:#000!important;background-color:#fff!important}.epf-preview-overlay *,.paybill-preview-overlay *,.supplementary-preview-overlay *,.employees-preview-overlay *,.surrender-preview-overlay *,.arrear-preview-overlay *,.festival-preview-overlay *{color:#000!important;border-color:#00000026!important}.epf-preview-overlay .card,.paybill-preview-overlay .card,.supplementary-preview-overlay .card,.employees-preview-overlay .card,.surrender-preview-overlay .card,.arrear-preview-overlay .card,.festival-preview-overlay .card{background-color:#f8f9fa!important;border:1px solid #dee2e6!important}.epf-preview-overlay .table-container,.paybill-preview-overlay .table-container,.supplementary-preview-overlay .table-container,.employees-preview-overlay .table-container,.surrender-preview-overlay .table-container,.arrear-preview-overlay .table-container,.festival-preview-overlay .table-container{background-color:#fff!important;border:1px solid #dee2e6!important}.epf-preview-overlay .table th,.paybill-preview-overlay .table th,.supplementary-preview-overlay .table th,.employees-preview-overlay .table th,.surrender-preview-overlay .table th,.arrear-preview-overlay .table th,.festival-preview-overlay .table th{color:#000!important;background-color:#e9ecef!important;border:1px solid #dee2e6!important;font-weight:700!important}.epf-preview-overlay .table td,.paybill-preview-overlay .table td,.supplementary-preview-overlay .table td,.employees-preview-overlay .table td,.surrender-preview-overlay .table td,.arrear-preview-overlay .table td,.festival-preview-overlay .table td{background-color:#fff!important;border:1px solid #dee2e6!important}.epf-preview-overlay .table tr:hover,.paybill-preview-overlay .table tr:hover,.supplementary-preview-overlay .table tr:hover,.employees-preview-overlay .table tr:hover,.surrender-preview-overlay .table tr:hover,.arrear-preview-overlay .table tr:hover,.festival-preview-overlay .table tr:hover{background-color:#f1f3f5!important}.epf-preview-overlay .btn-primary,.paybill-preview-overlay .btn-primary,.supplementary-preview-overlay .btn-primary,.employees-preview-overlay .btn-primary,.surrender-preview-overlay .btn-primary,.arrear-preview-overlay .btn-primary,.festival-preview-overlay .btn-primary{color:#fff!important;background-color:#212529!important;border:none!important}.epf-preview-overlay .btn-secondary,.paybill-preview-overlay .btn-secondary,.supplementary-preview-overlay .btn-secondary,.employees-preview-overlay .btn-secondary,.surrender-preview-overlay .btn-secondary,.arrear-preview-overlay .btn-secondary,.festival-preview-overlay .btn-secondary{color:#212529!important;background-color:#f8f9fa!important;border:1px solid #ced4da!important}@media print{.sidebar,.topbar,.no-print,button,.btn{display:none!important}html,body,#root,.app-container,.main-content,.page-container{color:#000!important;background:#fff!important;height:auto!important;min-height:auto!important;margin:0!important;padding:0!important;overflow:visible!important}.epf-main-content,.paybill-main-content,.supplementary-main-content,.employees-main-content,.surrender-main-content,.arrear-main-content,.festival-main-content{display:none!important}.epf-preview-overlay,.paybill-preview-overlay,.supplementary-preview-overlay,.employees-preview-overlay,.surrender-preview-overlay,.arrear-preview-overlay,.festival-preview-overlay{color:#000!important;z-index:auto!important;width:100%!important;height:auto!important;min-height:auto!important;box-shadow:none!important;background:#fff!important;margin:0!important;padding:0!important;position:relative!important;overflow:visible!important}.epf-preview-overlay,.epf-preview-overlay *,.paybill-preview-overlay,.paybill-preview-overlay *,.supplementary-preview-overlay,.supplementary-preview-overlay *,.employees-preview-overlay,.employees-preview-overlay *,.surrender-preview-overlay,.surrender-preview-overlay *,.arrear-preview-overlay,.arrear-preview-overlay *,.festival-preview-overlay,.festival-preview-overlay *{color:#000!important;box-shadow:none!important;text-shadow:none!important;background-color:#0000!important;border-color:#000!important}.epf-preview-overlay h1,.epf-preview-overlay h2,.paybill-preview-overlay h1,.paybill-preview-overlay h2,.supplementary-preview-overlay h1,.supplementary-preview-overlay h2,.employees-preview-overlay h1,.employees-preview-overlay h2,.surrender-preview-overlay h1,.surrender-preview-overlay h2,.arrear-preview-overlay h1,.arrear-preview-overlay h2,.festival-preview-overlay h1,.festival-preview-overlay h2{color:#000!important;margin-bottom:5px!important;font-size:16pt!important;font-weight:700!important}.epf-preview-overlay p,.paybill-preview-overlay p,.supplementary-preview-overlay p,.employees-preview-overlay p,.surrender-preview-overlay p,.arrear-preview-overlay p,.festival-preview-overlay p{color:#333!important;margin-bottom:15px!important;font-size:10pt!important}.epf-preview-overlay div[style*=grid-template-columns],.paybill-preview-overlay div[style*=grid-template-columns],.supplementary-preview-overlay div[style*=grid-template-columns],.employees-preview-overlay div[style*=grid-template-columns],.surrender-preview-overlay div[style*=grid-template-columns],.arrear-preview-overlay div[style*=grid-template-columns],.festival-preview-overlay div[style*=grid-template-columns]{grid-template-columns:repeat(4,1fr)!important;gap:15px!important;margin-bottom:25px!important;display:grid!important}.epf-preview-overlay .card,.paybill-preview-overlay .card,.supplementary-preview-overlay .card,.employees-preview-overlay .card,.surrender-preview-overlay .card,.arrear-preview-overlay .card,.festival-preview-overlay .card{background:#fff!important;border:1px solid #000!important;border-radius:4px!important;padding:8px!important}.epf-preview-overlay .card span,.paybill-preview-overlay .card span,.supplementary-preview-overlay .card span,.employees-preview-overlay .card span,.surrender-preview-overlay .card span,.arrear-preview-overlay .card span,.festival-preview-overlay .card span{text-transform:uppercase;color:#555!important;font-size:9pt!important}.epf-preview-overlay .card h3,.paybill-preview-overlay .card h3,.supplementary-preview-overlay .card h3,.employees-preview-overlay .card h3,.surrender-preview-overlay .card h3,.arrear-preview-overlay .card h3,.festival-preview-overlay .card h3{margin-top:4px!important;font-size:13pt!important;font-weight:700!important}.epf-preview-overlay .table-container,.paybill-preview-overlay .table-container,.supplementary-preview-overlay .table-container,.employees-preview-overlay .table-container,.surrender-preview-overlay .table-container,.arrear-preview-overlay .table-container,.festival-preview-overlay .table-container{background:#fff!important;border:1px solid #000!important;border-radius:0!important;width:100%!important;max-width:100%!important;overflow:visible!important}.epf-preview-overlay .table,.paybill-preview-overlay .table,.supplementary-preview-overlay .table,.employees-preview-overlay .table,.surrender-preview-overlay .table,.arrear-preview-overlay .table,.festival-preview-overlay .table{border-collapse:collapse!important;width:100%!important}.epf-preview-overlay .table th,.epf-preview-overlay .table td,.employees-preview-overlay .table th,.employees-preview-overlay .table td,.surrender-preview-overlay .table th,.surrender-preview-overlay .table td,.arrear-preview-overlay .table th,.arrear-preview-overlay .table td,.festival-preview-overlay .table th,.festival-preview-overlay .table td{color:#000!important;border:1px solid #000!important;padding:6px 4px!important;font-size:8.5pt!important}.paybill-preview-overlay .table th,.paybill-preview-overlay .table td,.supplementary-preview-overlay .table th,.supplementary-preview-overlay .table td{color:#000!important;border:1px solid #000!important;padding:4px 2px!important;font-size:6.5pt!important}.epf-preview-overlay .table th,.paybill-preview-overlay .table th,.supplementary-preview-overlay .table th,.employees-preview-overlay .table th,.surrender-preview-overlay .table th,.arrear-preview-overlay .table th,.festival-preview-overlay .table th{background-color:#f0f0f0!important;font-weight:700!important}.epf-preview-overlay .table tr,.paybill-preview-overlay .table tr,.supplementary-preview-overlay .table tr,.employees-preview-overlay .table tr,.surrender-preview-overlay .table tr,.arrear-preview-overlay .table tr,.festival-preview-overlay .table tr{page-break-inside:avoid!important}@page{size:A4 landscape;margin:10mm}}
