/* Progress bar styles */
#progressBarContainer {
    position: relative;
    width: 100%;
    background-color: #f3f3f3;
    border: 0px solid #ccc;
}

#progressBar {
    width: 0%; /* Adjust this dynamically as progress updates */
    height: 0px;
    background-color: #ffffff;
}

/* Make the percentage text white and effectively invisible */
#progressPercentage {
    display: none;
}