/* =====================================================
   MODERN SETUP TAB LAYOUT - DEDICATED STYLESHEET
   ===================================================== */

/* Setup Steps - Main containers */
#setup-tab .setup-step {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
  transition: all 0.2s ease;
}

#setup-tab .setup-step.active {
  border-color: #007bff;
  background: #f0f8ff;
}

#setup-tab .setup-step.completed {
  border-color: #28a745;
  background: #f0fff4;
}

/* Step Headers */
#setup-tab .step-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 8px;
}

#setup-tab .step-number {
  background: #6c757d;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  margin-right: 12px;
}

#setup-tab .setup-step.active .step-number {
  background: #007bff;
}

#setup-tab .setup-step.completed .step-number {
  background: #28a745;
}

#setup-tab .step-title {
  font-size: 15px;
  font-weight: 600;
  color: #495057;
  margin: 0;
}

#setup-tab .step-description {
  font-size: 12px;
  color: #6c757d;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

#setup-tab .step-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Upload Areas */
#setup-tab .upload-area {
  border: 2px dashed #dee2e6;
  border-radius: 6px;
  padding: 12px;
  text-align: center;
  background: white;
  transition: all 0.2s ease;
  cursor: pointer;
}

#setup-tab .upload-area:hover {
  border-color: #007bff;
  background: #f8f9fa;
}

#setup-tab .upload-area.dragover {
  border-color: #007bff;
  background: #e7f3ff;
}

#setup-tab .upload-icon {
  font-size: 20px;
  color: #6c757d;
  margin-bottom: 6px;
}

#setup-tab .upload-text {
  font-size: 14px;
  color: #495057;
  margin-bottom: 4px;
}

#setup-tab .upload-hint {
  font-size: 12px;
  color: #6c757d;
}

/* Dividers */
#setup-tab .or-divider {
  display: flex;
  align-items: center;
  margin: 10px 0;
  color: #6c757d;
  font-size: 12px;
}

#setup-tab .or-divider::before,
#setup-tab .or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #dee2e6;
}

#setup-tab .or-divider span {
  padding: 0 12px;
  background: white;
}

/* Method Options */
#setup-tab .method-option {
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 6px;
}

#setup-tab .method-option.selected {
  border-color: #007bff;
  background: #f0f8ff;
}

/* Status Indicators */
#setup-tab .boundary-status {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  color: #155724;
  font-size: 13px;
  margin-top: 8px;
}

#setup-tab .boundary-status .fas {
  margin-right: 8px;
}