:root{--bg: #0a0a0f;--surface: #12121a;--surface-2: #1a1a25;--border: #2a2a3a;--text: #e8e8ef;--text-2: #8888a0;--accent: #6c5ce7;--accent-light: #a29bfe;--green: #00b894;--red: #ff6b6b;--yellow: #ffd93d;--radius: 12px;--font: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;--mono: "SF Mono", "Cascadia Code", "Fira Code", monospace}*{margin:0;padding:0;box-sizing:border-box}body{font-family:var(--font);background:var(--bg);color:var(--text);min-height:100vh;padding:2rem;max-width:1400px;margin:0 auto}header{text-align:center;margin-bottom:2rem}header h1{font-size:2rem;font-weight:700}.subtitle{color:var(--text-2);margin-top:.5rem}.dropzone{border:2px dashed var(--border);border-radius:var(--radius);padding:3rem 2rem;text-align:center;cursor:pointer;transition:border-color .2s,background .2s}.dropzone:hover,.dropzone.dragover{border-color:var(--accent);background:#6c5ce70d}.dropzone-icon{font-size:3rem;display:block;margin-bottom:1rem}.dropzone-hint{color:var(--text-2);font-size:.85rem;margin-top:.5rem}.file-label{color:var(--accent-light);cursor:pointer;text-decoration:underline}.loading{text-align:center;padding:3rem}.spinner{width:40px;height:40px;border:3px solid var(--border);border-top-color:var(--accent);border-radius:50%;animation:spin .8s linear infinite;margin:0 auto 1rem}@keyframes spin{to{transform:rotate(360deg)}}.hidden{display:none!important}.card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem;margin-bottom:1.5rem}.summary-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:1rem;margin-top:1rem}.stat-box{background:var(--surface-2);border-radius:8px;padding:1rem;text-align:center}.stat-value{font-size:1.5rem;font-weight:700;font-family:var(--mono);color:var(--accent-light)}.stat-label{font-size:.8rem;color:var(--text-2);margin-top:.25rem}.workspace-layout{display:grid;grid-template-columns:320px 1fr;gap:1.5rem;margin-bottom:1.5rem}@media(max-width:900px){.workspace-layout{grid-template-columns:1fr}}.operations-panel{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:1.25rem;align-self:start;position:sticky;top:1rem}.operations-panel h3{font-size:1rem;margin-bottom:1rem;color:var(--accent-light)}.op-list{display:flex;flex-direction:column;gap:.5rem}.op-card{background:var(--surface-2);border:1px solid var(--border);border-radius:8px;padding:.75rem;cursor:pointer;transition:border-color .2s,background .2s}.op-card:hover{border-color:var(--accent)}.op-card.active{border-color:var(--accent);background:#6c5ce71a}.op-card-title{font-weight:600;font-size:.9rem;margin-bottom:.25rem}.op-card-desc{font-size:.78rem;color:var(--text-2)}.op-form{margin-top:1rem;padding:1rem;background:var(--surface-2);border-radius:8px;border:1px solid var(--border)}.op-form h4{font-size:.9rem;margin-bottom:.75rem;color:var(--accent-light)}.op-form label{display:block;font-size:.82rem;color:var(--text-2);margin-bottom:.25rem;margin-top:.5rem}.op-form select,.op-form input[type=text]{width:100%;padding:.4rem .6rem;background:var(--bg);border:1px solid var(--border);border-radius:6px;color:var(--text);font-family:var(--mono);font-size:.85rem;outline:none}.op-form select:focus,.op-form input[type=text]:focus{border-color:var(--accent)}.op-form .btn-row{margin-top:.75rem;display:flex;gap:.5rem}.btn{padding:.4rem 1rem;border-radius:6px;border:1px solid var(--border);background:var(--accent);color:#fff;font-size:.85rem;cursor:pointer;transition:opacity .2s}.btn:hover{opacity:.85}.btn:disabled{opacity:.4;cursor:not-allowed}.btn-secondary{background:var(--surface-2);color:var(--text)}.btn-secondary:hover{background:var(--border)}.history{margin-top:1rem}.history h4{font-size:.85rem;color:var(--text-2);margin-bottom:.5rem}.history-item{font-size:.78rem;padding:.4rem .6rem;background:var(--surface-2);border-radius:6px;margin-bottom:.35rem;display:flex;justify-content:space-between;align-items:center}.history-label{color:var(--text)}.history-delta{font-family:var(--mono);font-size:.75rem}.history-delta.removed{color:var(--red)}.history-delta.same{color:var(--text-2)}.preview-panel{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:1.25rem;overflow:hidden}.preview-panel h3{font-size:1rem;margin-bottom:.75rem;color:var(--accent-light)}.preview-info{font-size:.8rem;color:var(--text-2);font-weight:400}.table-wrap{overflow-x:auto;max-height:520px;overflow-y:auto}.data-table{width:100%;border-collapse:collapse;font-size:.82rem;font-family:var(--mono)}.data-table th{position:sticky;top:0;background:var(--surface-2);padding:.5rem .75rem;text-align:left;font-weight:600;color:var(--accent-light);border-bottom:2px solid var(--border);white-space:nowrap}.data-table td{padding:.35rem .75rem;border-bottom:1px solid var(--border);white-space:nowrap;max-width:250px;overflow:hidden;text-overflow:ellipsis}.data-table tr:hover td{background:#6c5ce70d}.data-table .null-cell{color:var(--text-2);font-style:italic}.export-bar{display:flex;gap:.5rem;margin-top:1rem;flex-wrap:wrap}.export-btn{background:var(--surface-2);border:1px solid var(--border);color:var(--text);padding:.4rem 1rem;border-radius:6px;cursor:pointer;font-size:.85rem;transition:background .2s}.export-btn:hover{background:var(--accent);color:#fff}.export-btn.accent{background:var(--accent);color:#fff;border-color:var(--accent)}.export-btn.accent:hover{opacity:.85}footer{text-align:center;margin-top:3rem;padding-top:1.5rem;border-top:1px solid var(--border);color:var(--text-2);font-size:.85rem}footer a{color:var(--accent-light);text-decoration:none}footer a:hover{text-decoration:underline}
