.progress-bar-wrapper {
    overflow: hidden;
    transition: height 0.5s ease, opacity 0.5s ease;
    height: 0;
    opacity: 0;
  }
  
  .progress-bar-wrapper.visible {
    height: auto; /* Let it expand to its content height */
    opacity: 1;
  }

  /* Add this CSS rule to your stylesheet */
.progress-bar.no-transition {
    transition: none !important;
  }