/* Onboarding steps styles */
.step-indicators {
  margin-bottom: 20px;
}

.step-line {
  flex-grow: 1;
  height: 2px;
  background-color: #ddd;
  margin-top: 25px;
}

.step {
  text-align: center;
  color: #999;
  z-index: 1;
}

.step.active {
  color: #007bff;
}

.step.completed {
  color: #28a745;
}

.step-circle {
  width: 30px;
  height: 30px;
  margin: 0 auto;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 50%;
  line-height: 26px;
  font-weight: bold;
}

.step.active .step-circle {
  border-color: #007bff;
}

.step.completed .step-circle {
  background-color: #28a745;
  border-color: #28a745;
  color: white;
}

.step-label {
  margin-top: 5px;
  font-size: 12px;
}

.fade-transition {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.fade-in {
  opacity: 1;
}

.resource-item {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  position: relative;
}

.remove-resource {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}
