/* Simplified Composition Steps CSS */
.composition-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 20px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 70px;
}

.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.step.active .step-circle {
  background-color: #6366f1; /* Indigo */
  color: white;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.step.completed .step-circle {
  background-color: #10b981; /* Green */
  color: white;
}

.step-name {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.step.active .step-name {
  color: white;
}

.step-divider {
  flex-grow: 0;
  height: 1px;
  width: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-top: 19px; /* Align with the middle of circles */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .composition-steps {
    gap: 5px;
    padding: 15px 0;
  }
  
  .step {
    width: 60px;
  }
  
  .step-circle {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .step-name {
    font-size: 0.7rem;
  }
  
  .step-divider {
    width: 10px;
    margin-top: 16px;
  }
}

@media (max-width: 576px) {
  .composition-steps {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 15px 10px;
  }
  
  .step {
    min-width: 50px;
  }
}
