/* ===== PÁGINA DE IMPORTAÇÃO - DESIGN MODERNO ===== */

.import-page-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

    /* Empty State / CTA Screen */
    .import-empty-state {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: calc(100vh - 200px);
      text-align: center;
      padding: 3rem 2rem;
      max-width: 700px;
      margin: 0 auto;
    }

    .import-illustration {
      width: 200px;
      height: 200px;
      margin-bottom: 2.5rem;
      position: relative;
    }

    .import-illustration-circle {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      animation: pulse 3s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.3);
      }
      50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
      }
    }

    .import-illustration-icon {
      width: 120px;
      height: 120px;
      border-radius: 30px;
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 4rem;
      box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
    }

    .import-empty-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .import-empty-subtitle {
      font-size: 1.125rem;
      color: var(--text-muted);
      margin-bottom: 3rem;
      line-height: 1.6;
      max-width: 500px;
    }

    .import-cta-button {
      padding: 1.25rem 3rem;
      font-size: 1.125rem;
      font-weight: 600;
      border-radius: 12px;
      background: #0068E0;
      color: white;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      box-shadow: 0 8px 24px rgba(0, 104, 224, 0.3);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      font-family: 'DM Sans', sans-serif;
    }

    .import-cta-button:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0, 104, 224, 0.4);
    }

    .import-cta-button:active {
      transform: translateY(-2px);
    }

    .import-cta-button i {
      font-size: 1.25rem;
    }

    .import-features-mini {
      display: flex;
      gap: 3rem;
      margin-top: 3rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .import-feature-mini {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--text-muted);
      font-size: 0.9375rem;
    }

    .import-feature-mini i {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--surface-secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #10b981;
      font-size: 1.125rem;
    }

    /* Upload Section */
    .import-upload-section {
      background: var(--surface-primary);
      border-radius: 16px;
      padding: 2.5rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      margin-bottom: 2rem;
    }

    .import-upload-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--border-color);
    }

    .import-back-button {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      background: var(--surface-secondary);
      color: var(--text-primary);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      font-size: 0.9375rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
    }

    .import-back-button:hover {
      background: var(--surface-primary);
      border-color: var(--text-muted);
      transform: translateX(-4px);
    }

    .import-back-button i {
      font-size: 1rem;
    }

    .import-template-download {
      display: inline-flex;
      align-items: center;
      gap: 0.625rem;
      padding: 0.75rem 1.5rem;
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      color: white;
      border-radius: 8px;
      font-size: 0.9375rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    }

    .import-template-download:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
    }

    .import-template-download i {
      font-size: 1rem;
    }

    .import-section-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .import-section-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
    }

    .import-section-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-primary);
      margin: 0;
    }

    .import-section-subtitle {
      font-size: 0.9375rem;
      color: var(--text-muted);
      margin: 0;
    }

    /* Dropzone moderno */
    .import-dropzone-modern {
      border: 2px dashed var(--border-color);
      border-radius: 16px;
      padding: 3rem 2rem;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      background: var(--surface-secondary);
      position: relative;
      overflow: hidden;
    }

    .import-dropzone-modern::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .import-dropzone-modern:hover::before {
      opacity: 1;
    }

    .import-dropzone-modern:hover {
      border-color: #10b981;
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(16, 185, 129, 0.15);
    }

    .import-dropzone-modern.drag-over {
      border-color: #10b981;
      background: rgba(16, 185, 129, 0.1);
      border-width: 3px;
    }

    .import-dropzone-modern.drag-over::before {
      opacity: 1;
    }

    .import-upload-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      border-radius: 20px;
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2.5rem;
      box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    }

    .import-dropzone-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 0.5rem;
    }

    .import-dropzone-description {
      font-size: 0.9375rem;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    .import-supported-formats {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.625rem 1.25rem;
      background: var(--surface-primary);
      border-radius: 100px;
      font-size: 0.875rem;
      color: var(--text-muted);
      border: 1px solid var(--border-color);
    }

    .import-format-badge {
      padding: 0.25rem 0.625rem;
      background: #10b981;
      color: white;
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 600;
    }

    .import-file-selected-modern {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 1.5rem;
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      color: white;
      border-radius: 12px;
      margin-top: 1.5rem;
      box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
      animation: slideInUp 0.3s ease-out;
    }

    @keyframes slideInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .import-file-info {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .import-file-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }

    .import-file-details {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .import-file-name {
      font-weight: 600;
      font-size: 0.9375rem;
    }

    .import-file-size {
      font-size: 0.8125rem;
      opacity: 0.9;
    }

    .import-file-remove {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.2);
      border: none;
      color: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }

    .import-file-remove:hover {
      background: rgba(255, 255, 255, 0.3);
    }

    /* Options Grid */
    .import-options-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0;
    }

    .import-option-card {
      background: var(--surface-secondary);
      border-radius: 12px;
      padding: 1.5rem;
      border: 2px solid transparent;
      transition: all 0.2s;
    }

    .import-option-card:hover {
      border-color: #10b981;
      box-shadow: 0 4px 16px rgba(16, 185, 129, 0.1);
    }

    .import-option-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .import-option-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    .import-option-title {
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--text-primary);
      margin: 0;
    }

    .import-option-select-modern {
      width: 100%;
      padding: 0.875rem 1rem;
      border: 1.5px solid var(--border-color);
      border-radius: 10px;
      font-size: 0.9375rem;
      background: var(--surface-primary);
      color: var(--text-primary);
      cursor: pointer;
      transition: all 0.2s;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
    }

    .import-option-select-modern:hover {
      border-color: #10b981;
    }

    .import-option-select-modern:focus {
      outline: none;
      border-color: #10b981;
      box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    }

    /* Action Buttons */
    .import-actions-modern {
      display: flex;
      gap: 1rem;
      justify-content: flex-end;
      padding-top: 2rem;
      border-top: 1px solid var(--border-color);
    }

    .import-btn {
      padding: 0.875rem 2rem;
      font-size: 0.9375rem;
      font-weight: 600;
      border-radius: 10px;
      transition: all 0.2s;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.625rem;
      border: none;
      font-family: 'DM Sans', sans-serif;
    }

    .import-btn-primary {
      background: #0068E0;
      color: white;
      box-shadow: 0 8px 24px rgba(0, 104, 224, 0.3);
      border-radius: 12px;
    }

    .import-btn-primary:hover {
      background: #005bc3;
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0, 104, 224, 0.4);
    }

    .import-btn-secondary {
      background: var(--surface-secondary);
      color: var(--text-primary);
      border: 1.5px solid var(--border-color);
    }

    .import-btn-secondary:hover {
      background: var(--surface-primary);
      border-color: var(--text-muted);
    }

    /* Features Grid */
    .import-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .import-feature-card {
      background: var(--surface-primary);
      border-radius: 12px;
      padding: 1.5rem;
      border: 1px solid var(--border-color);
      transition: all 0.3s;
    }

    .import-feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      border-color: #10b981;
    }

    .import-feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
      color: #10b981;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .import-feature-title {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 0.5rem;
    }

    .import-feature-description {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin: 0;
    }

    .import-template-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.625rem 1.25rem;
      background: var(--surface-secondary);
      color: #10b981;
      border: 1.5px solid #10b981;
      border-radius: 8px;
      font-size: 0.875rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s;
      margin-top: 0.75rem;
    }

    .import-template-link:hover {
      background: #10b981;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
    }

    /* Progress */
    .import-progress-modern {
      background: var(--surface-secondary);
      border-radius: 12px;
      padding: 2rem;
      margin-top: 2rem;
    }

    .import-progress-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem;
    }

    .import-progress-title {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--text-primary);
      margin: 0;
    }

    .import-progress-percentage {
      font-size: 1.5rem;
      font-weight: 700;
      color: #10b981;
    }

    .import-progress-bar {
      width: 100%;
      height: 8px;
      background: var(--surface-primary);
      border-radius: 100px;
      overflow: hidden;
      margin-bottom: 1rem;
    }

    .import-progress-fill {
      height: 100%;
      background: linear-gradient(90deg, #10b981 0%, #059669 100%);
      border-radius: 100px;
      transition: width 0.3s ease;
      width: 0;
    }

    .import-progress-status {
      font-size: 0.875rem;
      color: var(--text-muted);
      text-align: center;
    }

    /* Results */
    .import-results-modern {
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      border-radius: 16px;
      padding: 3rem 2rem;
      text-align: center;
      color: white;
      margin-top: 2rem;
    }

.import-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  color: #0f172a;
  box-shadow: inset 0 0 0 2px rgba(15, 23, 42, 0.12), 0 12px 25px rgba(15, 23, 42, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

    .import-results-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .import-results-subtitle {
      font-size: 1.125rem;
      opacity: 0.9;
      margin-bottom: 2rem;
    }

    .import-results-stats {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .import-result-stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }

.import-result-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
}

.import-result-stat-label {
  font-size: 0.9375rem;
  opacity: 0.95;
  color: rgba(15, 23, 42, 0.8);
}

    /* Responsive */
    @media (max-width: 1024px) {
      .import-options-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .import-empty-title {
        font-size: 2rem;
      }

      .import-empty-subtitle {
        font-size: 1rem;
      }

      .import-illustration {
        width: 160px;
        height: 160px;
      }

      .import-illustration-circle {
        width: 160px;
        height: 160px;
      }

      .import-illustration-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
      }

      .import-features-mini {
        gap: 1.5rem;
      }

      .import-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
      }

      .import-upload-section {
        padding: 1.5rem;
      }

      .import-upload-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
      }

      .import-back-button,
      .import-template-download {
        width: 100%;
        justify-content: center;
      }

      .import-dropzone-modern {
        padding: 2rem 1rem;
      }

      .import-upload-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
      }

      .import-features-grid {
        grid-template-columns: 1fr;
      }

      .import-file-selected-modern {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
      }
    }

    /* Hidden elements */
    .hidden {
      display: none !important;
    }

    /* Stats dentro do summary */
    #importSummaryStats .stat-item {
      background: rgba(255, 255, 255, 0.2);
      padding: 1rem 1.5rem;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }

#importSummaryStats .stat-item i {
      font-size: 1.5rem;
    }

    .import-file-selected-wrapper.hidden {
      display: none;
    }

    .import-preview-table {
      margin-top: 1.5rem;
      border-radius: 12px;
      border: 1px solid var(--border-color);
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      background: var(--surface-primary);
    }

    .import-preview-flex {
      min-width: 720px;
      display: flex;
      flex-direction: column;
      font-size: 0.9rem;
    }

    .import-preview-header,
    .import-preview-row {
      display: flex;
      width: 100%;
    }

    .import-preview-header {
      background: var(--surface-muted);
      border-bottom: 1px solid var(--border-color);
      font-weight: 600;
    }

    .import-preview-row:nth-child(even) {
      background: rgba(15, 23, 42, 0.02);
    }

    .import-preview-cell {
      flex: 1 0 140px;
      min-width: 140px;
      padding: 0.75rem 1rem;
      border-bottom: 1px solid var(--border-color);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .import-preview-body .import-preview-row:last-child .import-preview-cell {
      border-bottom: none;
    }

    .import-preview-cell--header {
      font-weight: 600;
      color: var(--text-primary);
    }

    .import-preview-empty {
      padding: 1.5rem;
      text-align: center;
      color: var(--text-muted);
    }

    .import-summary-errors {
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border-color);
    }

    .import-summary-errors h3 {
      font-size: 1rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #f97316;
    }

    .import-errors-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      max-height: 220px;
      overflow-y: auto;
    }

    .import-errors-list .error-item {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      padding: 0.75rem 1rem;
      border-radius: 10px;
      background: rgba(249, 115, 22, 0.08);
      border: 1px solid rgba(249, 115, 22, 0.2);
      color: #b45309;
      font-size: 0.9rem;
    }

    .import-errors-list .error-item i {
      margin-top: 0.2rem;
    }

.import-results-modern.success {
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.25);
  background: linear-gradient(135deg, rgba(237, 255, 246, 0.95), rgba(228, 238, 255, 0.95));
  position: relative;
}

    .import-results-modern.success::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 16px;
      border: 1px dashed rgba(16, 185, 129, 0.5);
      pointer-events: none;
    }

    .import-results-modern.warning {
      border: 1px solid rgba(249, 115, 22, 0.3);
      box-shadow: 0 8px 30px rgba(249, 115, 22, 0.15);
      background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(251, 191, 36, 0.08));
    }

    /* === Novo bloco: Mapeamento de colunas === */
    .import-mapping-modern {
      background: var(--surface-secondary);
      border-radius: 16px;
      padding: 1.75rem;
      border: 1px dashed var(--border-color);
      margin: 1.5rem 0;
    }

    .import-mapping-header {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      align-items: flex-start;
      flex-wrap: wrap;
    }

    .import-mapping-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--text-primary);
      margin: 0;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .import-mapping-title i {
      color: #0068E0;
    }

    .import-mapping-subtitle {
      margin: 0.15rem 0 0;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .import-mapping-hint {
      font-size: 0.85rem;
      color: var(--text-muted);
      background: var(--surface-primary);
      border-radius: 999px;
      padding: 0.35rem 0.85rem;
      border: 1px solid var(--border-color);
    }

    .import-mapping-help {
      background: var(--surface-primary);
      border-radius: 12px;
      border: 1px dashed var(--border-color);
      padding: 1rem 1.25rem;
      margin-bottom: 1.5rem;
      color: var(--text-muted);
    }

    .import-mapping-help p {
      margin: 0 0 0.5rem;
      color: var(--text-primary);
      font-weight: 600;
    }

    .import-mapping-help ul {
      margin: 0;
      padding-left: 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      list-style: disc;
    }

    .import-mapping-help li {
      line-height: 1.4;
    }

    .import-mapping-table {
      border: 1px solid var(--border-color);
      border-radius: 14px;
      overflow: hidden;
      background: var(--surface-primary);
    }

    .import-mapping-row {
      display: grid;
      grid-template-columns: minmax(240px, 1fr) minmax(200px, 1fr);
      gap: 1.25rem;
      padding: 1rem 1.25rem;
      border-bottom: 1px solid var(--border-color);
      align-items: center;
    }

    .import-mapping-row:last-child {
      border-bottom: none;
    }

    .import-mapping-column {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .import-mapping-column-name {
      font-weight: 600;
      color: var(--text-primary);
    }

    .import-mapping-column-label {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .import-mapping-row.required .import-mapping-column-name::after {
      content: "Obrigatório";
      font-size: 0.65rem;
      color: #b45309;
      background: rgba(180, 83, 9, 0.15);
      border-radius: 999px;
      padding: 0.1rem 0.5rem;
      margin-left: 0.5rem;
    }

    .import-mapping-select {
      width: 100%;
      padding: 0.75rem;
      border-radius: 10px;
      border: 1px solid var(--border-color);
      background: var(--surface-secondary);
      font-size: 0.95rem;
      color: var(--text-primary);
    }

    @media (max-width: 768px) {
      .import-mapping-row {
        grid-template-columns: 1fr;
      }
    }

    .import-results-actions {
      margin-top: 1.5rem;
      display: flex;
      justify-content: center;
    }

    .import-btn-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      border-radius: 999px;
      border: 1px solid var(--border-color);
      padding: 0.6rem 1.5rem;
      text-decoration: none;
      color: var(--text-primary);
      background: transparent;
      font-weight: 600;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .import-btn-link:hover {
      background: var(--surface-secondary);
      color: #0068E0;
    }
