@import"https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap";:root{--bg-primary: #fafafa;--bg-secondary: #ffffff;--bg-tertiary: #f5f5f5;--bg-elevated: #ffffff;--bg-hover: #f8f8f8;--text-primary: #1a1a1a;--text-secondary: #666666;--text-tertiary: #999999;--border-primary: #e5e5e5;--border-secondary: #f0f0f0;--accent-primary: #2563eb;--accent-secondary: #3b82f6;--accent-hover: #1d4ed8;--success: #10b981;--warning: #f59e0b;--danger: #ef4444;--shadow-sm: 0 1px 2px rgba(0, 0, 0, .04);--shadow-md: 0 4px 6px rgba(0, 0, 0, .07);--shadow-lg: 0 10px 15px rgba(0, 0, 0, .1);--shadow-xl: 0 20px 25px rgba(0, 0, 0, .12)}[data-theme=dark]{--bg-primary: #0a0a0a;--bg-secondary: #141414;--bg-tertiary: #1a1a1a;--bg-elevated: #1f1f1f;--bg-hover: #242424;--text-primary: #f5f5f5;--text-secondary: #a3a3a3;--text-tertiary: #737373;--border-primary: #2a2a2a;--border-secondary: #1f1f1f;--accent-primary: #3b82f6;--accent-secondary: #60a5fa;--accent-hover: #2563eb;--success: #10b981;--warning: #f59e0b;--danger: #ef4444;--shadow-sm: 0 1px 2px rgba(0, 0, 0, .3);--shadow-md: 0 4px 6px rgba(0, 0, 0, .4);--shadow-lg: 0 10px 15px rgba(0, 0, 0, .5);--shadow-xl: 0 20px 25px rgba(0, 0, 0, .6)}*{margin:0;padding:0;box-sizing:border-box}body{font-family:DM Sans,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;background:var(--bg-primary);color:var(--text-primary);line-height:1.6;transition:background-color .3s ease,color .3s ease}.app{min-height:100vh}.header{background:var(--bg-secondary);padding:1.25rem 2rem;border-bottom:1px solid var(--border-primary);position:sticky;top:0;z-index:100;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);box-shadow:var(--shadow-sm)}.header-content{max-width:1400px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:2rem}.logo{font-family:Bricolage Grotesque,sans-serif;font-size:1.5rem;font-weight:700;color:var(--accent-primary);display:flex;align-items:center;gap:.75rem}.header-controls{display:flex;align-items:center;gap:1rem}.theme-toggle{background:var(--bg-tertiary);border:1px solid var(--border-primary);color:var(--text-secondary);width:40px;height:40px;border-radius:10px;cursor:pointer;font-size:1.2rem;display:flex;align-items:center;justify-content:center;transition:all .2s ease}.theme-toggle:hover{background:var(--bg-hover);border-color:var(--accent-primary);color:var(--accent-primary);transform:scale(1.05)}.nav{display:flex;gap:.5rem;background:var(--bg-tertiary);padding:.25rem;border-radius:12px;flex-wrap:wrap}.nav-btn{background:transparent;color:var(--text-secondary);border:none;padding:.5rem 1rem;border-radius:8px;cursor:pointer;font-size:.9rem;font-weight:500;transition:all .2s ease;font-family:DM Sans,sans-serif}.nav-btn:hover{background:var(--bg-hover);color:var(--text-primary)}.nav-btn.active{background:var(--bg-secondary);color:var(--accent-primary);box-shadow:var(--shadow-sm)}.theme-select{background:var(--bg-tertiary);color:var(--text-secondary);border:1px solid var(--border-primary);height:40px;padding:0 1.75rem 0 .75rem;border-radius:10px;cursor:pointer;font-size:.85rem;font-weight:500;font-family:DM Sans,sans-serif;transition:all .2s ease;-webkit-appearance:none;-moz-appearance:none;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='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .6rem center}.theme-select:hover{background-color:var(--bg-hover);border-color:var(--accent-primary);color:var(--text-primary)}.theme-select:focus{outline:none;border-color:var(--accent-primary);color:var(--text-primary)}.main{max-width:1400px;margin:0 auto;padding:2rem}.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.5rem;margin-bottom:2rem}.stat-card,.chart-card{background:var(--bg-secondary);padding:1.75rem;margin-bottom:30px;border-radius:16px;border:1px solid var(--border-primary);transition:all .3s ease;position:relative;overflow:hidden}.stat-card,.chart-card{display:flex;flex-direction:column;height:100%}.chart-card .chart-content{flex:1;display:flex;flex-direction:column}.stat-card:before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--accent-primary),var(--accent-secondary));opacity:0;transition:opacity .3s ease}.stat-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}.stat-card:hover:before{opacity:1}.stat-card h3,.chart-card h3{font-size:.8rem;color:var(--text-tertiary);margin-bottom:.75rem;text-transform:uppercase;letter-spacing:.1em;font-weight:600}.stat-card .value,.chart-card .value{font-size:2.5rem;font-weight:700;color:var(--accent-primary);font-family:Bricolage Grotesque,sans-serif;line-height:1.2}.stat-card .subtext,.chart-card .subtext{font-size:.85rem;color:var(--text-tertiary);margin-top:.5rem}.stat-card .table-container{flex:1;display:flex}.stat-card .table{width:100%}[data-theme=light] .stat-card{background:#fff}.charts-section{display:flex;flex-direction:column;gap:1.5rem}.chart-row{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}.chart-row>*{height:100%}.chart-large{width:100%}.chart-medium{width:100%;display:flex}.chart-medium>*{flex:1}.chart-medium canvas{min-height:300px}@media (max-width: 768px){.chart-row{grid-template-columns:1fr}}.action-bar{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem;gap:1rem;flex-wrap:wrap}.heading-count{color:var(--text-tertiary);font-size:.9rem}.active-opportunities-switch{background:transparent;border:none;padding:0;cursor:pointer;display:inline-flex;align-items:center;gap:.5rem;font-size:.85rem;font-weight:600;color:var(--text-secondary);font-family:DM Sans,sans-serif}.active-opportunities-switch .switch-track{width:40px;height:22px;background:var(--bg-tertiary);border:1px solid var(--border-primary);border-radius:999px;position:relative;transition:all .2s ease;flex-shrink:0}.active-opportunities-switch .switch-thumb{width:18px;height:18px;background:var(--bg-secondary);border:1px solid var(--border-primary);border-radius:50%;position:absolute;top:1px;left:1px;transition:all .2s ease;box-shadow:var(--shadow-sm)}.active-opportunities-switch .switch-label{color:inherit}.active-opportunities-switch:hover .switch-track{border-color:var(--accent-primary)}.active-opportunities-switch:focus-visible{outline:none;box-shadow:0 0 0 3px #2563eb33;border-radius:999px}.active-opportunities-switch.active{color:var(--text-primary)}.active-opportunities-switch.active .switch-track{background:var(--accent-primary);border-color:var(--accent-primary)}.active-opportunities-switch.active .switch-thumb{left:19px;border-color:var(--accent-primary)}.filters{display:flex;gap:.5rem;flex-wrap:wrap}.filter-select,.search-input{background:var(--bg-secondary);color:var(--text-primary);border:1px solid var(--border-primary);padding:.6rem 1rem;border-radius:10px;font-size:.9rem;font-family:DM Sans,sans-serif;transition:all .2s ease}.filter-select:focus,.search-input:focus{outline:none;border-color:var(--accent-primary);box-shadow:0 0 0 3px #2563eb1a}.search-input{min-width:200px;width:100%;padding-right:2.5rem}.btn{background:var(--accent-primary);color:#fff;border:none;padding:.7rem 1.5rem;border-radius:10px;cursor:pointer;font-weight:600;font-size:.9rem;transition:all .2s ease;font-family:DM Sans,sans-serif;display:inline-flex;align-items:center;gap:.5rem}.btn:hover{background:var(--accent-hover);transform:translateY(-1px);box-shadow:var(--shadow-md)}.btn-secondary{background:var(--bg-tertiary);color:var(--text-primary);border:1px solid var(--border-primary)}.btn-secondary:hover{background:var(--bg-hover);border-color:var(--accent-primary);color:var(--accent-primary)}.btn-sm{padding:.4rem .8rem;font-size:.85rem}.table-container{background:var(--bg-secondary);border-radius:16px;border:1px solid var(--border-primary);overflow:hidden;box-shadow:var(--shadow-sm)}.table{width:100%;border-collapse:collapse;border-spacing:0}.link{color:var(--accent-primary);text-decoration:none}.link:hover{text-decoration:underline}.category-pill{display:inline-block;padding:.25rem .75rem;border-radius:12px;font-size:.8rem;font-weight:500;white-space:nowrap}.category-consumer-tech{background:#e0f2fe;color:#0c4a6e;border:1px solid #0284c7}[data-theme=dark] .category-consumer-tech{background:#0c4a6e;color:#7dd3fc;border:1px solid #0ea5e9}.category-custom-0{background:#fae8ff;color:#701a75;border:1px solid #a21caf}[data-theme=dark] .category-custom-0{background:#701a75;color:#f0abfc;border:1px solid #d946ef}.category-custom-1{background:#dcfce7;color:#14532d;border:1px solid #16a34a}[data-theme=dark] .category-custom-1{background:#14532d;color:#86efac;border:1px solid #22c55e}.category-custom-2{background:#ffedd5;color:#7c2d12;border:1px solid #ea580c}[data-theme=dark] .category-custom-2{background:#7c2d12;color:#fed7aa;border:1px solid #f97316}.category-custom-3{background:#e0f2fe;color:#0c4a6e;border:1px solid #0284c7}[data-theme=dark] .category-custom-3{background:#0c4a6e;color:#7dd3fc;border:1px solid #0ea5e9}.category-custom-4{background:#fef9c3;color:#713f12;border:1px solid #ca8a04}[data-theme=dark] .category-custom-4{background:#713f12;color:#fef08a;border:1px solid #eab308}.category-custom-5{background:#f3e8ff;color:#5b21b6;border:1px solid #7c3aed}[data-theme=dark] .category-custom-5{background:#5b21b6;color:#d8b4fe;border:1px solid #a855f7}.category-custom-6{background:#ddd6fe;color:#4c1d95;border:1px solid #6366f1}[data-theme=dark] .category-custom-6{background:#4c1d95;color:#c4b5fd;border:1px solid #818cf8}.category-custom-7{background:#fce7f3;color:#9f1239;border:1px solid #e11d48}[data-theme=dark] .category-custom-7{background:#9f1239;color:#fbcfe8;border:1px solid #f43f5e}.category-custom-8{background:#ccfbf1;color:#134e4a;border:1px solid #0d9488}[data-theme=dark] .category-custom-8{background:#134e4a;color:#5eead4;border:1px solid #14b8a6}.category-custom-9{background:#fef3c7;color:#78350f;border:1px solid #d97706}[data-theme=dark] .category-custom-9{background:#78350f;color:#fde68a;border:1px solid #f59e0b}.category-custom-10{background:#ede9fe;color:#4c1d95;border:1px solid #7c3aed}[data-theme=dark] .category-custom-10{background:#4c1d95;color:#ddd6fe;border:1px solid #8b5cf6}.category-custom-11{background:#ecfccb;color:#365314;border:1px solid #65a30d}[data-theme=dark] .category-custom-11{background:#365314;color:#d9f99d;border:1px solid #84cc16}.table thead{background:var(--bg-tertiary);border-bottom:2px solid var(--border-primary)}.table th{padding:1rem;text-align:left;font-weight:600;color:var(--text-secondary);font-size:.85rem;text-transform:uppercase;letter-spacing:.05em}.table td{padding:1rem;border-bottom:1px solid var(--border-secondary);color:var(--text-primary)}.table tbody tr{transition:background .2s}.table tbody tr:hover{background:var(--bg-hover)}.status-badge{display:inline-block;padding:.35rem .75rem;border-radius:6px;font-size:.8rem;font-weight:600;white-space:nowrap}.status-not-applied{background:#f3f4f6;color:#6b7280}[data-theme=dark] .status-not-applied{background:#374151;color:#9ca3af}.status-applied{background:#dbeafe;color:#1e40af}[data-theme=dark] .status-applied{background:#1e3a8a;color:#93c5fd}.status-in-progress{background:linear-gradient(135deg,#fbbf24,#f59e0b);color:#78350f;font-weight:700;box-shadow:0 2px 4px #fbbf244d}[data-theme=dark] .status-in-progress{background:linear-gradient(135deg,#f59e0b,#d97706);color:#fef3c7;box-shadow:0 2px 4px #f59e0b66}.status-closed{background:#e5e7eb;color:#111827}[data-theme=dark] .status-closed{background:#1f2937;color:#e5e7eb}.priority-badge{display:inline-block;padding:.35rem .75rem;border-radius:6px;font-size:.8rem;font-weight:600}.priority-tier1{background:#fecaca;color:#991b1b}[data-theme=dark] .priority-tier1{background:#991b1b;color:#fca5a5}.priority-tier2{background:#fef3c7;color:#78350f}[data-theme=dark] .priority-tier2{background:#854d0e;color:#fcd34d}.priority-tier3{background:#e0f2fe;color:#075985}[data-theme=dark] .priority-tier3{background:#0c4a6e;color:#7dd3fc}.table tbody tr:last-child td{border-bottom:none}.modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#0009;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);display:flex;align-items:center;justify-content:center;z-index:1000;padding:1rem;animation:fadeIn .2s ease}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.modal{background:var(--bg-secondary);border:1px solid var(--border-primary);border-radius:20px;width:100%;max-width:600px;max-height:90vh;overflow-y:auto;box-shadow:var(--shadow-xl);animation:slideUp .3s ease}@keyframes slideUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.modal-header{padding:1.5rem 2rem;border-bottom:1px solid var(--border-primary);display:flex;justify-content:space-between;align-items:center}.modal-header h2{color:var(--accent-primary);font-size:1.5rem;font-family:Bricolage Grotesque,sans-serif}.modal-close{background:var(--bg-tertiary);border:none;border-radius:8px;color:var(--text-secondary);font-size:1.5rem;cursor:pointer;padding:0;width:32px;height:32px;display:flex;align-items:center;justify-content:center;transition:all .2s ease}.modal-close:hover{background:var(--bg-hover);color:var(--danger)}.modal-body{padding:1.5rem 2rem}.modal-footer{padding:1.5rem 2rem;border-top:1px solid var(--border-primary);display:flex;gap:1rem;justify-content:flex-end}.form-group{margin-bottom:1.5rem}.form-group label{display:block;margin-bottom:.5rem;color:var(--text-primary);font-weight:500;font-size:.9rem}.form-group input,.form-group select,.form-group textarea{width:100%;background:var(--bg-tertiary);color:var(--text-primary);border:1px solid var(--border-primary);padding:.75rem 1rem;border-radius:10px;font-family:DM Sans,sans-serif;font-size:.9rem;transition:all .2s ease}.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--accent-primary);box-shadow:0 0 0 3px #2563eb1a}.form-group textarea{min-height:100px;resize:vertical}.form-hint{display:block;margin-top:.35rem;font-size:.78rem;color:var(--text-tertiary);line-height:1.4}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}.empty-state{text-align:center;padding:4rem 2rem;color:var(--text-tertiary)}.empty-state h3{color:var(--text-secondary);margin-bottom:.5rem}.empty-state-icon{font-size:4rem;margin-bottom:1rem;opacity:.5}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.search-container{position:relative;flex:1;min-width:250px;max-width:400px}.clear-search{position:absolute;right:.5rem;top:50%;transform:translateY(-50%);background:none;border:none;color:#6b8aff;font-size:1.5rem;cursor:pointer}.footer{background:var(--bg-secondary);border-top:1px solid var(--border-primary);padding:2rem;margin-top:3rem;text-align:center}.footer-content{max-width:1400px;margin:0 auto;display:flex;flex-direction:column;gap:1rem;align-items:center}.footer-text{color:var(--text-secondary);font-size:.95rem}.footer-privacy{display:block;margin-top:.25rem;font-size:.8rem;color:var(--text-tertiary)}.footer-links{display:flex;gap:1.5rem;align-items:center;flex-wrap:wrap;justify-content:center}.footer-link{color:var(--accent-primary);text-decoration:none;font-size:.95rem;display:flex;align-items:center;gap:.5rem;transition:color .2s ease}.footer-link:hover{color:var(--accent-hover);text-decoration:underline}.footer-icon{width:18px;height:18px}@media (max-width: 768px){.header-content{flex-direction:column;align-items:flex-start}.main{padding:1rem}.table-container{overflow-x:auto}.table{min-width:800px}.form-row{grid-template-columns:1fr}}.update-banner{position:fixed;top:0;left:0;right:0;background:linear-gradient(90deg,var(--accent-primary),var(--accent-hover));color:#fff;padding:1rem;z-index:10000;display:flex;align-items:center;justify-content:space-between;box-shadow:0 2px 8px #0003}.update-banner-content{display:flex;align-items:center;gap:.75rem}.update-banner-icon{font-size:1.2rem}.update-banner-link{color:#fff;text-decoration:underline;margin-left:.5rem;cursor:pointer;opacity:.9;transition:opacity .2s}.update-banner-link:hover{opacity:1}.update-banner-actions{display:flex;gap:.5rem}.update-banner-btn{padding:.5rem 1rem;border-radius:6px;cursor:pointer;font-size:.9rem;font-weight:500;transition:all .2s}.update-banner-btn-dismiss{background:transparent;border:1px solid rgba(255,255,255,.5);color:#fff}.update-banner-btn-dismiss:hover{background:#ffffff1a;border-color:#fffc}.update-banner-btn-refresh{background:#fff;border:1px solid white;color:var(--accent-primary)}.update-banner-btn-refresh:hover{background:#ffffffe6}@media (max-width: 600px){.update-banner{flex-direction:column;gap:.75rem;text-align:center}.update-banner-content{flex-direction:column;gap:.5rem}.update-banner-link{margin-left:0}}[data-theme=meow],[data-theme=meow] *{cursor:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cellipse cx='14' cy='18' rx='5' ry='4' fill='%23E8792B'/%3E%3Ccircle cx='7.5' cy='11' r='2.5' fill='%23E8792B'/%3E%3Ccircle cx='20.5' cy='11' r='2.5' fill='%23E8792B'/%3E%3Ccircle cx='11.5' cy='8' r='2.2' fill='%23E8792B'/%3E%3Ccircle cx='16.5' cy='8' r='2.2' fill='%23E8792B'/%3E%3C/svg%3E") 14 14,auto}[data-theme=meow] button,[data-theme=meow] a,[data-theme=meow] select,[data-theme=meow] [role=button],[data-theme=meow] .nav-btn,[data-theme=meow] .theme-toggle,[data-theme=meow] .theme-select{cursor:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 34 34'%3E%3Cellipse cx='17' cy='22' rx='6' ry='5' fill='%23D0621A'/%3E%3Ccircle cx='9' cy='13.5' r='3' fill='%23D0621A'/%3E%3Ccircle cx='25' cy='13.5' r='3' fill='%23D0621A'/%3E%3Ccircle cx='14' cy='9.5' r='2.7' fill='%23D0621A'/%3E%3Ccircle cx='20' cy='9.5' r='2.7' fill='%23D0621A'/%3E%3C/svg%3E") 17 17,pointer}[data-theme=meow] .app{background:linear-gradient(#fff5ebd1,#fff5ebd1),url(/job-search-dashboard/assets/kawaii-cats-LdFphCJ1.svg);background-size:auto,500px 500px;background-repeat:no-repeat,repeat}[data-theme=meow] .header{position:sticky;overflow:visible}[data-theme=meow] .logo .theme-toggle{font-size:1.8rem;width:44px;height:44px;position:relative;overflow:visible}[data-theme=meow] .logo .theme-toggle:before,[data-theme=meow] .logo .theme-toggle:after{content:"";position:absolute;top:-10px;width:0;height:0;border-left:9px solid transparent;border-right:9px solid transparent;border-bottom:14px solid var(--accent-primary);z-index:1;filter:drop-shadow(0 -1px 0 #F2A7BB)}[data-theme=meow] .logo .theme-toggle:before{left:2px;transform:rotate(-12deg)}[data-theme=meow] .logo .theme-toggle:after{right:2px;transform:rotate(12deg)}[data-theme=meow] .nav{border-radius:20px;background:var(--bg-tertiary);border:2px dashed var(--border-primary)}[data-theme=meow] .nav-btn{border-radius:16px}[data-theme=meow] .nav-btn.active{background:var(--accent-primary);color:#fff;box-shadow:0 2px 8px #e8792b4d}[data-theme=meow] .nav-btn:hover:not(.active){background:var(--bg-hover);color:var(--accent-primary)}[data-theme=meow] .stat-card,[data-theme=meow] .chart-card{border:2px solid var(--border-primary);border-radius:16px;transition:all .3s ease}[data-theme=meow] .stat-card:hover,[data-theme=meow] .chart-card:hover{border-color:var(--accent-primary);transform:translateY(-2px);box-shadow:0 8px 24px #e8792b26}[data-theme=meow] .footer{border-top:none;position:relative}[data-theme=meow] .footer:before{content:"🐟 🐟 🐟 🐟 🐟 🐟 🐟 🐟 🐟 🐟 🐟 🐟";display:block;text-align:center;font-size:.7rem;letter-spacing:.5rem;opacity:.35;padding-bottom:1rem;border-top:2px dashed var(--border-primary);padding-top:1rem}[data-theme=meow] .table tbody tr{transition:all .2s ease}[data-theme=meow] .table tbody tr:hover{background:var(--bg-hover);box-shadow:inset 3px 0 0 var(--accent-primary)}[data-theme=meow] ::selection{background:#e8792b40;color:#3b2218}[data-theme=meow] ::-webkit-scrollbar{width:10px}[data-theme=meow] ::-webkit-scrollbar-track{background:var(--bg-tertiary)}[data-theme=meow] ::-webkit-scrollbar-thumb{background:var(--accent-secondary);border-radius:10px;border:2px solid var(--bg-tertiary)}[data-theme=meow] ::-webkit-scrollbar-thumb:hover{background:var(--accent-primary)}[data-theme=meow] .theme-select{border-radius:16px;border:2px dashed var(--border-primary);font-weight:600}[data-theme=meow] .theme-select:hover,[data-theme=meow] .theme-select:focus{border-style:solid;border-color:var(--accent-primary)}[data-theme=meow] .theme-toggle{border-radius:50%;border:2px dashed var(--border-primary)}[data-theme=meow] .theme-toggle:hover{border-style:solid;border-color:var(--accent-primary);transform:scale(1.1) rotate(8deg)}[data-theme=meow] .modal{scrollbar-width:none}[data-theme=meow] .modal::-webkit-scrollbar{display:none}[data-theme=meow] .modal{border-radius:20px;border:2px solid var(--accent-secondary)}[data-theme=meow] .app:after{content:"😺";position:fixed;bottom:1.5rem;right:1.5rem;font-size:2rem;animation:meow-float 3s ease-in-out infinite;z-index:50;filter:drop-shadow(0 2px 4px rgba(0,0,0,.15));pointer-events:none}[data-theme=meow] .main:before{content:"🐟";position:fixed;bottom:2rem;right:4.5rem;font-size:1.2rem;animation:fish-swim 4s ease-in-out infinite;z-index:50;pointer-events:none}[data-theme=meow] .main:after{content:"😸";position:fixed;bottom:1.2rem;left:1.5rem;font-size:1.6rem;animation:meow-float 3.5s ease-in-out infinite 1s;z-index:50;filter:drop-shadow(0 2px 4px rgba(0,0,0,.15));pointer-events:none}[data-theme=meow] .footer:after{content:"🐟";position:fixed;bottom:1.8rem;left:4rem;font-size:1rem;animation:fish-swim 5s ease-in-out infinite .8s;z-index:50;pointer-events:none}@keyframes meow-float{0%,to{transform:translateY(0) rotate(0)}25%{transform:translateY(-8px) rotate(3deg)}75%{transform:translateY(-4px) rotate(-3deg)}}@keyframes fish-swim{0%,to{transform:translate(0) scaleX(1)}40%{transform:translate(-12px) scaleX(1)}50%{transform:translate(-12px) scaleX(-1)}90%{transform:translate(0) scaleX(-1)}}[data-theme=meow] .stat-value{position:relative}[data-theme=meow] .stat-value:before,[data-theme=meow] .stat-value:after{content:"";position:absolute;top:50%;width:16px;height:1.5px;background:var(--accent-primary);opacity:.3}[data-theme=meow] .stat-value:before{left:-22px;transform:rotate(-15deg)}[data-theme=meow] .stat-value:after{right:-22px;transform:rotate(15deg)}[data-theme=neon80s] .app{background:url(/job-search-dashboard/assets/outrun-DLYE33wa.svg);background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:fixed}[data-theme=neon80s] .header{background:#0d0221d9;border-bottom:2px solid #2e2157;box-shadow:0 2px 20px #f6019d26}[data-theme=neon80s] .table-container{background:#261447bf;-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px)}[data-theme=neon80s] .main{background:transparent}[data-theme=neon80s] .logo{text-shadow:0 0 10px rgba(45,226,230,.5),0 0 20px rgba(45,226,230,.2)}[data-theme=neon80s] .nav{border:1px solid #2e2157;box-shadow:inset 0 0 8px #f6019d14}[data-theme=neon80s] .nav-btn{font-weight:600;transition:all .25s ease}[data-theme=neon80s] .nav-btn.active{background:linear-gradient(135deg,#f6019d,#ff3864);color:#fff;box-shadow:0 0 12px #f6019d80,0 0 24px #f6019d33;text-shadow:0 0 6px rgba(255,255,255,.4)}[data-theme=neon80s] .nav-btn:hover:not(.active){color:#2de2e6;text-shadow:0 0 8px rgba(45,226,230,.5)}[data-theme=neon80s] .stat-card,[data-theme=neon80s] .chart-card{background:#261447bf;-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);border:1px solid #2e2157;transition:all .3s ease}[data-theme=neon80s] .modal{background:#241734f2;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border:2px solid #f6019d;box-shadow:0 0 30px #f6019d40,0 10px 40px #00000080}[data-theme=neon80s] .stat-card:hover{border-color:#2de2e6;box-shadow:0 0 12px #2de2e633,0 4px 16px #0006;transform:translateY(-2px)}[data-theme=neon80s] .chart-card:hover{border-color:#f6019d;box-shadow:0 0 12px #f6019d33,0 4px 16px #0006}[data-theme=neon80s] .stat-value{text-shadow:0 0 8px rgba(45,226,230,.4)}[data-theme=neon80s] ::-webkit-scrollbar{width:8px}[data-theme=neon80s] ::-webkit-scrollbar-track{background:#0d0221}[data-theme=neon80s] ::-webkit-scrollbar-thumb{background:linear-gradient(#2de2e6,#f6019d);border-radius:8px}[data-theme=neon80s] ::-webkit-scrollbar-thumb:hover{background:linear-gradient(#2de2e6,#ff3864)}[data-theme=neon80s] ::selection{background:#f6019d59;color:#fff}[data-theme=neon80s] .table tbody tr{transition:all .2s ease}[data-theme=neon80s] .table tbody tr:hover{background:#2de2e60f;box-shadow:inset 3px 0 #2de2e6}[data-theme=neon80s] .modal{scrollbar-width:none}[data-theme=neon80s] .modal::-webkit-scrollbar{display:none}[data-theme=neon80s] .theme-select:hover,[data-theme=neon80s] .theme-select:focus{border-color:#2de2e6;box-shadow:0 0 8px #2de2e64d}[data-theme=neon80s] .footer{border-top:none}[data-theme=neon80s] .footer:before{content:"▲ ▽ ▲ ▽ ▲ ▽ ▲ ▽ ▲ ▽ ▲ ▽ ▲";display:block;text-align:center;font-size:.55rem;letter-spacing:.4rem;background:linear-gradient(90deg,#2de2e6,#f6019d,#ff6c11,#f9c80e,#2de2e6);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;opacity:.5;padding-bottom:1rem;border-top:1px solid #2e2157;padding-top:1rem}[data-theme=space] .app{background:linear-gradient(#0b1a3b4d,#0b1a3b4d),url(/job-search-dashboard/assets/starfield-D-c_a6D8.svg);background-size:auto,600px 600px;background-repeat:no-repeat,repeat}@keyframes twinkle{0%{opacity:.4}50%{opacity:.8}to{opacity:.3}}[data-theme=space] .header{background:#112244e6;border-bottom:2px solid #1E3A6E;box-shadow:0 2px 20px #00e5d026}[data-theme=space] .logo{text-shadow:0 0 10px rgba(0,229,208,.4)}[data-theme=space] .logo .theme-toggle{font-size:1.6rem;animation:rocket-bob 2s ease-in-out infinite;border-color:#1e3a6e;background:#162b52cc}@keyframes rocket-bob{0%,to{transform:translateY(0) rotate(-10deg)}50%{transform:translateY(-4px) rotate(0)}}[data-theme=space] .nav{border-radius:16px;border:2px solid #1E3A6E;background:#162b52b3;box-shadow:inset 0 0 10px #00e5d00d}[data-theme=space] .nav-btn{border-radius:12px;font-weight:700;text-transform:uppercase;font-size:.8rem;letter-spacing:.5px;transition:all .25s ease}[data-theme=space] .nav-btn:hover:not(.active){background:#ff6b2b26;color:#ff6b2b;text-shadow:0 0 8px rgba(255,107,43,.5)}[data-theme=space] .nav-btn.active{background:linear-gradient(135deg,#00e5d0,#3b8bff);color:#0b1a3b;font-weight:800;box-shadow:0 0 10px #00e5d080,0 0 20px #00e5d033;animation:glow-pulse 2s ease-in-out infinite}@keyframes glow-pulse{0%,to{box-shadow:0 0 10px #00e5d080,0 0 20px #00e5d033}50%{box-shadow:0 0 15px #00e5d0b3,0 0 30px #00e5d04d}}[data-theme=space] .stat-card,[data-theme=space] .chart-card{border:2px solid #1E3A6E;border-radius:14px;background:#112244d9;transition:all .3s ease}[data-theme=space] .stat-card:before{background:linear-gradient(90deg,#ff6b2b,#00e5d0)}[data-theme=space] .stat-card:hover{border-color:#ff6b2b;box-shadow:0 0 12px #ff6b2b4d,0 4px 16px #0006;transform:translateY(-3px)}[data-theme=space] .chart-card:hover{border-color:#ff6b2b;box-shadow:0 0 12px #ff6b2b4d,0 4px 16px #0006}[data-theme=space] .stat-value{color:#00e5d0;text-shadow:0 0 8px rgba(0,229,208,.4)}[data-theme=space] button{transition:all .2s cubic-bezier(.175,.885,.32,1.275)}[data-theme=space] .nav-btn:active,[data-theme=space] button:active{transform:scale(.95)}[data-theme=space] .theme-toggle:hover{transform:scale(1.15) rotate(8deg);border-color:#ff6b2b;box-shadow:0 0 10px #ff6b2b66}[data-theme=space] .theme-select{border:2px solid #1E3A6E;border-radius:12px;background:#162b52cc;font-weight:600;text-transform:uppercase;font-size:.8rem;letter-spacing:.5px}[data-theme=space] .theme-select:hover,[data-theme=space] .theme-select:focus{border-color:#ff6b2b;box-shadow:0 0 8px #ff6b2b4d}[data-theme=space] .table th{text-transform:uppercase;font-size:.75rem;letter-spacing:1px;color:#00e5d0;border-bottom:2px solid #1E3A6E}[data-theme=space] .table tbody tr{transition:all .2s ease}[data-theme=space] .table tbody tr:hover{background:#3b8bff14;box-shadow:inset 3px 0 #ff6b2b}[data-theme=space] .modal{scrollbar-width:none}[data-theme=space] .modal::-webkit-scrollbar{display:none}[data-theme=space] .modal{border:2px solid #FF6B2B;border-radius:16px;box-shadow:0 10px 40px #00000080}[data-theme=space] ::-webkit-scrollbar{width:8px}[data-theme=space] ::-webkit-scrollbar-track{background:#0b1a3b}[data-theme=space] ::-webkit-scrollbar-thumb{background:linear-gradient(#00e5d0,#3b8bff);border-radius:8px}[data-theme=space] ::-webkit-scrollbar-thumb:hover{background:linear-gradient(#ff6b2b,#ff9d5c)}[data-theme=space] ::selection{background:#00e5d04d;color:#fff}[data-theme=space] .footer{border-top:none;position:relative}[data-theme=space] .footer:before{content:"✦  ✧  ★  ✧  ✦  ✧  ★  ✧  ✦  ✧  ★  ✧  ✦";display:block;text-align:center;font-size:.6rem;letter-spacing:.6rem;color:#00e5d0;opacity:.4;padding-bottom:1rem;border-top:1px solid #1E3A6E;padding-top:1rem}[data-theme=space] .main:before{content:"🪐";position:fixed;bottom:1.5rem;left:1.5rem;font-size:1.8rem;animation:planet-spin 8s linear infinite;z-index:50;pointer-events:none;filter:drop-shadow(0 0 6px rgba(59,139,255,.4))}[data-theme=space] .main:after{content:"🛸";position:fixed;bottom:4rem;right:2rem;font-size:1.5rem;animation:ufo-fly 6s ease-in-out infinite;z-index:50;pointer-events:none}[data-theme=space] .footer:after{content:"⭐";position:fixed;bottom:1.5rem;right:1.5rem;font-size:1.4rem;animation:star-spin 3s ease-in-out infinite;z-index:50;pointer-events:none}@keyframes planet-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes ufo-fly{0%,to{transform:translate(0) translateY(0)}25%{transform:translate(-15px) translateY(-8px)}50%{transform:translate(5px) translateY(-15px)}75%{transform:translate(15px) translateY(-5px)}}@keyframes star-spin{0%,to{transform:scale(1) rotate(0);opacity:1}50%{transform:scale(1.3) rotate(180deg);opacity:.7}}
