body { font-family: Inter, system-ui, sans-serif; background: #f4f6fb; margin: 0; padding: 24px; }
.card { background: white; border-radius: 16px; box-shadow: 0 18px 55px rgba(28, 44, 78, 0.08); padding: 24px; max-width: 980px; margin: auto; }
.header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
input, button, select { font: inherit; border: 1px solid #d8dee7; border-radius: 12px; padding: 12px 14px; width: 100%; box-sizing: border-box; }
button { background: #1f6feb; color: white; cursor: pointer; border: none; }
button.secondary { background: #f8fafc; color: #1f2937; border: 1px solid #cbd5e1; }
.grid { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.panel { background: #f8fafc; border-radius: 14px; padding: 18px; min-height: 120px; }
.log { max-height: 280px; overflow: auto; background: #111827; color: white; padding: 14px; border-radius: 14px; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier, monospace; }
.progress-bar { width: 100%; height: 18px; border-radius: 999px; background: #e2e8f0; overflow: hidden; margin-top: 8px; }
.progress-bar > div { height: 100%; background: #0f766e; width: 0%; transition: width 0.3s ease; }
table { width: 100%; border-collapse: collapse; margin-top: 12px; }
th, td { text-align: left; padding: 10px 8px; border-bottom: 1px solid #e2e8f0; }
.status-pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 999px; font-size: 0.85rem; }
.status-pending { background: #eef2ff; color: #4338ca; }
.status-success { background: #ecfdf5; color: #166534; }
.status-failed { background: #fef2f2; color: #b91c1c; }
.status-skipped { background: #f8fafc; color: #475569; }
.action-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.log-section { display: grid; gap: 20px; margin-top: 24px; }
@media (max-width: 820px) { .grid { grid-template-columns: 1fr; } }
