/* Wrapper for the progress bar */
.CustomProgressBar_progressWrapper__a_9ed {
    width: 100%; /* full width, adjust as needed */
    background-color: #f0f0f0; /* Custom background for the progress bar track */
    border-radius: 8px;
  }
  
  /* Custom styles for the progress bar */
  
  .CustomProgressBar_customProgress__QyTbe > div {
    background-color: var(--primary); /* Custom color for the progress */
    border-radius: 8px;
    height: 100%;
    transition: width 0.4s ease;
  }
  
