.progress-container {
    width: 100%;
    height: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    /* Ensures the bar stays within the container */
}

.progress-bar {
    height: 100%;
    width: 0%;
    /* Initial width */
    background-color: #4CAF50;
    /* Example color */
    border-radius: 10px;
    animation: progress-animation 2s linear infinite;
    /* Apply the animation */
}

@keyframes progress-animation {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}