:root{--background: hsl(220, 15%, 97%);--foreground: hsl(225, 15%, 15%);--card: hsl(0, 0%, 100%);--card-foreground: hsl(225, 15%, 15%);--primary: hsl(230, 75%, 56%);--primary-foreground: hsl(0, 0%, 100%);--primary-glow: hsl(235, 85%, 65%);--secondary: hsl(255, 15%, 94%);--secondary-foreground: hsl(225, 15%, 25%);--muted: hsl(225, 10%, 95%);--muted-foreground: hsl(225, 10%, 45%);--accent: hsl(270, 70%, 60%);--accent-foreground: hsl(0, 0%, 100%);--destructive: hsl(0, 75%, 60%);--destructive-foreground: hsl(0, 0%, 100%);--success: hsl(140, 70%, 45%);--success-foreground: hsl(0, 0%, 100%);--border: hsl(225, 15%, 88%);--input: hsl(225, 15%, 88%);--ring: hsl(230, 75%, 56%);--shadow-sm: 0 2px 8px -2px hsla(230, 75%, 56%, .1);--shadow-md: 0 4px 16px -4px hsla(230, 75%, 56%, .15);--shadow-lg: 0 8px 32px -8px hsla(230, 75%, 56%, .2);--shadow-glow: 0 0 24px hsla(235, 85%, 65%, .3);--radius: .5rem;--font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;--transition-smooth: all .3s cubic-bezier(.4, 0, .2, 1);--transition-bounce: all .4s cubic-bezier(.34, 1.56, .64, 1)}@media (prefers-color-scheme: dark){:root{--background: hsl(225, 20%, 8%);--foreground: hsl(220, 15%, 92%);--card: hsl(225, 15%, 12%);--card-foreground: hsl(220, 15%, 92%);--primary: hsl(235, 85%, 65%);--primary-foreground: hsl(225, 20%, 8%);--primary-glow: hsl(240, 90%, 70%);--secondary: hsl(225, 15%, 15%);--secondary-foreground: hsl(220, 15%, 85%);--muted: hsl(225, 10%, 18%);--muted-foreground: hsl(225, 10%, 60%);--accent: hsl(270, 80%, 70%);--accent-foreground: hsl(225, 20%, 8%);--destructive: hsl(0, 80%, 65%);--success: hsl(140, 75%, 50%);--border: hsl(225, 15%, 20%);--input: hsl(225, 15%, 20%);--shadow-glow: 0 0 32px hsla(240, 90%, 70%, .4)}}*{margin:0;padding:0;box-sizing:border-box}body{font-family:var(--font-family);background-color:var(--background);color:var(--foreground);line-height:1.6;min-height:100vh}.container{max-width:1200px;margin:0 auto;padding:0 1rem}.header{background:linear-gradient(135deg,var(--primary),var(--primary-glow));color:var(--primary-foreground);box-shadow:var(--shadow-glow);position:sticky;top:0;z-index:50}.header-content{display:flex;align-items:center;justify-content:space-between;padding:1.5rem 0}.header-left{display:flex;align-items:center;gap:.75rem}.header-icon{background:#ffffff1a;padding:.5rem;border-radius:var(--radius)}.bot-icon,.sparkles-icon,.file-icon,.briefcase-icon{width:2rem;height:2rem}.header-title{font-size:1.875rem;font-weight:700;margin:0}.header-subtitle{color:#fffc;font-size:.875rem;margin:0}.sparkles-icon{width:1.5rem;height:1.5rem;animation:pulse 2s infinite}.main{padding:2rem 0;min-height:calc(100vh - 200px)}.input-grid{display:grid;grid-template-columns:1fr;gap:2rem}@media (min-width: 1024px){.input-grid{grid-template-columns:1fr 1fr}}.card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow-md);overflow:hidden}.card-header{padding:1.5rem 1.5rem 0}.card-title{display:flex;align-items:center;gap:.5rem;font-size:1.25rem;font-weight:600;color:var(--card-foreground);margin:0}.card-content{padding:1.5rem}.card-title svg{width:1.25rem;height:1.25rem;color:var(--primary)}.form-group{margin-bottom:1rem}.label{display:block;font-size:.875rem;font-weight:500;color:var(--card-foreground);margin-bottom:.5rem}.input{width:100%;padding:.75rem;border:1px solid var(--border);border-radius:calc(var(--radius) - 2px);background:var(--card);color:var(--card-foreground);font-size:.875rem;transition:var(--transition-smooth)}.input:focus{outline:none;border-color:var(--ring);box-shadow:0 0 0 2px #3b57e333}.textarea{width:100%;padding:.75rem;border:1px solid var(--border);border-radius:calc(var(--radius) - 2px);background:var(--card);color:var(--card-foreground);font-size:.875rem;resize:vertical;transition:var(--transition-smooth);font-family:Courier New,monospace}.textarea:focus{outline:none;border-color:var(--ring);box-shadow:0 0 0 2px #3b57e333}.resume-textarea{min-height:300px}.job-desc-textarea{min-height:150px}.form-hint{font-size:.75rem;color:var(--muted-foreground);margin-top:.5rem}.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.75rem 1.5rem;font-size:.875rem;font-weight:500;border-radius:calc(var(--radius) - 2px);border:none;cursor:pointer;transition:var(--transition-smooth);text-decoration:none;font-family:inherit}.btn:disabled{opacity:.5;cursor:not-allowed}.btn-primary{background:linear-gradient(135deg,var(--primary),var(--primary-glow));color:var(--primary-foreground)}.btn-primary:hover:not(:disabled){box-shadow:var(--shadow-glow);transform:translateY(-1px)}.btn-accent{background:linear-gradient(135deg,var(--primary),var(--accent));color:var(--accent-foreground)}.btn-accent:hover:not(:disabled){box-shadow:var(--shadow-glow);transform:translateY(-1px)}.btn-outline{background:transparent;border:1px solid var(--border);color:var(--card-foreground)}.btn-outline:hover:not(:disabled){background:var(--muted)}.btn-secondary{background:var(--secondary);color:var(--secondary-foreground)}.btn-secondary:hover:not(:disabled){background:var(--muted)}.btn-full{width:100%}.btn-sm{padding:.5rem 1rem;font-size:.75rem}.btn-icon{width:1rem;height:1rem}.job-input-form{background:var(--muted);padding:1rem;border-radius:var(--radius);border:1px solid var(--border);margin-bottom:1.5rem}.jobs-list{margin-bottom:1.5rem}.jobs-container{max-height:12rem;overflow-y:auto;margin-top:.5rem;display:flex;flex-direction:column;gap:.5rem}.job-item{display:flex;align-items:flex-start;justify-content:space-between;padding:.75rem;background:var(--card);border:1px solid var(--border);border-radius:var(--radius)}.job-item-content{flex:1;min-width:0}.job-item-title{display:flex;align-items:center;gap:.5rem;margin-bottom:.25rem}.badge{display:inline-flex;align-items:center;padding:.25rem .5rem;background:var(--secondary);color:var(--secondary-foreground);font-size:.75rem;font-weight:500;border-radius:calc(var(--radius) - 4px)}.job-item-description{font-size:.75rem;color:var(--muted-foreground);line-height:1.4;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.btn-remove{background:transparent;color:var(--destructive);border:none;padding:.5rem;border-radius:calc(var(--radius) - 4px);cursor:pointer;margin-left:.5rem;transition:var(--transition-smooth)}.btn-remove:hover{background:var(--destructive);color:var(--destructive-foreground)}.processing-card{max-width:48rem;margin:0 auto}.processing-status-card{background:linear-gradient(180deg,var(--card),var(--muted))}.processing-header{text-align:center;margin-bottom:2rem}.processing-title{display:flex;align-items:center;justify-content:center;gap:.75rem;margin-bottom:1rem}.processing-title h3{font-size:1.125rem;font-weight:600;margin:0}.processing-bot{width:1.5rem;height:1.5rem;color:var(--primary);animation:pulse 2s infinite}.progress-info{margin-bottom:1.5rem}.progress-text{display:flex;justify-content:space-between;font-size:.875rem;color:var(--muted-foreground);margin-bottom:.5rem}.progress-bar{width:100%;height:.5rem;background:var(--muted);border-radius:var(--radius);overflow:hidden}.progress-fill{height:100%;background:linear-gradient(90deg,var(--primary),var(--primary-glow));width:0%;transition:width .3s ease;border-radius:var(--radius)}.progress-hint{font-size:.75rem;color:var(--muted-foreground);text-align:center;margin-top:.5rem}.job-status-section{margin-bottom:2rem}.job-status-title{font-size:.875rem;font-weight:500;margin-bottom:.75rem}.job-status-list{display:flex;flex-direction:column;gap:.5rem;max-height:16rem;overflow-y:auto}.job-status-item{display:flex;align-items:center;justify-content:space-between;padding:.75rem;background:var(--card);border:1px solid var(--border);border-radius:var(--radius);transition:var(--transition-smooth)}.job-status-item:hover{box-shadow:var(--shadow-sm)}.job-status-left{display:flex;align-items:center;gap:.75rem;flex:1;min-width:0}.job-status-content{flex:1;min-width:0}.job-status-title-text{font-size:.875rem;font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.job-status-position{font-size:.75rem;color:var(--muted-foreground)}.status-icon{width:1rem;height:1rem;flex-shrink:0}.status-pending{color:var(--muted-foreground)}.status-processing{color:var(--primary);animation:pulse 1s infinite}.status-completed{color:var(--success)}.status-error{color:var(--destructive)}.status-badge{font-size:.75rem;padding:.25rem .5rem}.status-badge.badge-pending{background:var(--secondary);color:var(--secondary-foreground)}.status-badge.badge-processing{background:var(--primary);color:var(--primary-foreground);animation:pulse 1s infinite}.status-badge.badge-completed{background:var(--success);color:var(--success-foreground)}.status-badge.badge-error{background:var(--destructive);color:var(--destructive-foreground)}.processing-note{background:#3b57e30d;border:1px solid hsla(230,75%,56%,.2);border-radius:var(--radius);padding:1rem;display:flex;align-items:flex-start;gap:.5rem}.note-icon{width:1rem;height:1rem;color:var(--primary);flex-shrink:0;margin-top:.125rem}.note-text{font-size:.75rem;color:#3b57e3cc;line-height:1.5}.success-header{background:linear-gradient(135deg,var(--primary),var(--primary-glow));color:var(--primary-foreground);box-shadow:var(--shadow-glow);margin-bottom:1.5rem}.success-content{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem}.success-left{display:flex;align-items:center;gap:.75rem}.success-icon{width:1.5rem;height:1.5rem}.success-left h3{font-size:1.25rem;font-weight:600;margin:0}.success-left p{color:#fffc;font-size:.875rem;margin:0}.tabs-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:.25rem;padding:.25rem;background:var(--muted);border-radius:var(--radius);margin-bottom:1.5rem}.tab-trigger{padding:.5rem;font-size:.75rem;border:none;background:transparent;color:var(--muted-foreground);border-radius:calc(var(--radius) - 2px);cursor:pointer;transition:var(--transition-smooth);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.tab-trigger.active{background:var(--primary);color:var(--primary-foreground)}.tab-trigger:hover:not(.active){background:var(--card);color:var(--card-foreground)}.tab-content{display:none}.tab-content.active{display:block}.resume-header{display:flex;flex-direction:column;gap:1rem;padding:1rem;background:var(--muted);border:1px solid var(--border);border-radius:var(--radius);margin-bottom:1.5rem}@media (min-width: 768px){.resume-header{flex-direction:row;align-items:center;justify-content:space-between}}.resume-header-left h4{font-size:1.125rem;font-weight:600;margin:0 0 .5rem}.resume-header-badges{display:flex;flex-wrap:wrap;gap:.25rem}.resume-header-actions{display:flex;flex-wrap:wrap;gap:.5rem}.resume-content{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden}.resume-content-header{display:flex;align-items:center;gap:.5rem;padding:1rem;background:var(--muted);border-bottom:1px solid var(--border)}.resume-content-header svg{width:1rem;height:1rem;color:var(--muted-foreground)}.resume-content-title{font-size:.875rem;font-weight:500}.resume-preview{padding:1.5rem}.resume-text{font-family:Courier New,monospace;font-size:.875rem;line-height:1.6;white-space:pre-wrap;color:var(--card-foreground);background:#00000005;padding:1rem;border-radius:calc(var(--radius) - 2px);border:1px solid var(--border);overflow-x:auto}.footer{background:var(--muted);border-top:1px solid var(--border);margin-top:4rem;padding:1.5rem 0}.footer-content{text-align:center;font-size:.875rem;color:var(--muted-foreground)}.footer-content p{margin:.25rem 0}.toast-container{position:fixed;top:1rem;right:1rem;z-index:100;display:flex;flex-direction:column;gap:.5rem;max-width:24rem}.toast{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow-lg);padding:1rem;transform:translate(100%);animation:slideIn .3s ease forwards}.toast.toast-success{border-left:4px solid var(--success)}.toast.toast-error{border-left:4px solid var(--destructive)}.toast-title{font-weight:600;font-size:.875rem;margin:0 0 .25rem}.toast-description{font-size:.75rem;color:var(--muted-foreground);margin:0}.toast.toast-exit{animation:slideOut .3s ease forwards}@keyframes pulse{0%,to{opacity:1}50%{opacity:.5}}@keyframes slideIn{0%{transform:translate(100%);opacity:0}to{transform:translate(0);opacity:1}}@keyframes slideOut{0%{transform:translate(0);opacity:1}to{transform:translate(100%);opacity:0}}::-webkit-scrollbar{width:6px}::-webkit-scrollbar-track{background:var(--muted)}::-webkit-scrollbar-thumb{background:var(--border);border-radius:3px}::-webkit-scrollbar-thumb:hover{background:var(--muted-foreground)}.line-clamp-2{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.btn:focus,.input:focus,.textarea:focus,.tab-trigger:focus{outline:2px solid var(--ring);outline-offset:2px}@media print{.header,.footer,.btn,.toast-container{display:none!important}.resume-text{background:#fff!important;color:#000!important;border:none!important}}.csv-import-section{margin-bottom:1.5rem;padding:1rem;background:hsl(var(--muted));border-radius:.5rem;border:1px solid hsl(var(--border))}.file-input{width:100%;padding:.75rem;border:2px dashed hsl(var(--border));border-radius:.5rem;background:hsl(var(--background));color:hsl(var(--foreground));font-family:inherit;cursor:pointer;transition:all .2s ease}.file-input:hover{border-color:hsl(var(--primary));background:hsl(var(--muted))}.file-input:focus{outline:none;border-color:hsl(var(--primary));box-shadow:0 0 0 2px hsl(var(--primary) / .2)}.divider{display:flex;align-items:center;margin:1rem 0;text-align:center}.divider:before,.divider:after{content:"";flex:1;height:1px;background:hsl(var(--border))}.divider span{padding:0 1rem;font-size:.875rem;color:hsl(var(--muted-foreground));background:hsl(var(--background))}.resume-categories{margin-bottom:2rem}.category-section{margin-bottom:1.5rem;padding:1rem;background:hsl(var(--muted) / .5);border-radius:.5rem;border-left:4px solid hsl(var(--primary))}.category-title{font-size:1rem;font-weight:600;color:hsl(var(--primary));margin-bottom:.5rem;display:flex;align-items:center;gap:.5rem}.category-content{font-size:.875rem;line-height:1.6;color:hsl(var(--foreground));white-space:pre-line}
