/**
 * Migration Module Styles
 * AI Migration Engine (Phase 1)
 */

/* Dropzone hint (the dropzone itself is the framework's .file-drop-zone) */
.migration-dropzone-hint {
  font-size: 0.85em;
  opacity: 0.7;
  margin-top: 0.5rem;
}

/* Parsed summary */
.migration-summary h3 {
  margin-bottom: 0.75rem;
}

.migration-summary-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

/* Progress */
.migration-progress-track {
  height: 12px;
  border-radius: 6px;
  background-color: var(--border-color, #eee);
  overflow: hidden;
  margin: 1.5rem 0 0.5rem;
}

.migration-progress-bar {
  height: 100%;
  width: 0;
  border-radius: 6px;
  background-color: var(--primary-color, #4a90d9);
  transition: width 0.2s;
}

/* Job status badges */
.migration-status {
  display: inline-block;
  padding: 0.15em 0.6em;
  border-radius: 1em;
  font-size: 0.85em;
  background-color: var(--border-color, #eee);
}

.migration-status-uploaded,
.migration-status-review {
  background-color: #fff3cd;
  color: #856404;
}

.migration-status-done {
  background-color: #d4edda;
  color: #155724;
}

.migration-status-failed {
  background-color: #f8d7da;
  color: #721c24;
}

.migration-status-uploading,
.migration-status-profiling,
.migration-status-analyzing,
.migration-status-importing {
  background-color: #cce5ff;
  color: #004085;
}
