
#registerIndustries {
  max-height: 400px;  /* increase from 350px to 600px */
  overflow-y: auto;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 1rem;
  background-color: #f9f9f9;
}

.step-circle {
  width: 40px;
  height: 40px;
  border: 2px solid #ccc;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-weight: bold;
  color: #777;
  background-color: white;
  transition: all 0.3s;
}

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

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