#progress-bar-wrapper {
    background-color: #CCCCCC; /* Light grey background */
    height: 20px;
    width: 100%;
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden;
}

#progress-bar {
    background-color: #f1b32c; 
    height: 100%;
    width: 0%; /* Initial width */
    transition: width 0.3s ease;
    border-radius: 5px;
}
