/* Add this to your CSS file or in a <style> tag in your HTML */
#progress-container {
    width: 100%;
    background-color: #f0f0f0; /* Background color of the progress container */
    height: 20px; /* Adjust the height of the progress container */
    border-radius: 10px; /* Adjust the border radius for rounded corners */
    margin-bottom: 20px; /* Adjust margin as needed */
    display: none;
  }
  
  #progress-bar {
    height: 100%;
    background-color: rgb(33, 144, 185); /* Color of the progress bar */
    border-radius: 10px; /* Match the border radius of the container for consistency */
    transition: width 0.3s ease; /* Smooth transition effect for width changes */
  }
  