/* Progress steps styles for the extension installation guide */

.progress-tracker {
  margin-bottom: 30px;
}

.progress-step {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  background-color: #f8f9fa;
  border-left: 4px solid #dee2e6;
  transition: all 0.3s ease;
}

.progress-step.active {
  border-left-color: #4285f4;
  background-color: #e8f0fe;
}

.progress-step.completed {
  border-left-color: #34a853;
  background-color: #e6f4ea;
}

.step-number {
  position: absolute;
  left: -15px;
  top: 20px;
  width: 30px;
  height: 30px;
  background-color: #4285f4;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.completed .step-number {
  background-color: #34a853;
}

.step-content {
  margin-left: 20px;
}

.step-content h3 {
  margin-bottom: 10px;
  color: #333;
}

.completion-status {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

.incognito-tracker {
  margin-top: 20px;
}

.test-incognito-section {
  margin: 20px 0;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #4285f4;
}
