.progress-bar {
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    height: 20px;
	margin-top: 5px;
    width: 100%;
}

.progress-bar__fill {
    height: 100%;
    width: 0; /* Start width from 0 for animation */
    transition: width 1.5s ease-in-out; /* Smooth animation */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden; /* Hide overflowing text */
    position: relative;
}

.progress-bar__fill span {
    font-size: 12px;
    position: absolute; /* Ensure the text is positioned correctly */
    left: 50%;
    transform: translateX(-50%);
}

.progress-bar__fill span.outside {
    position: absolute;
    left: 100%;
    transform: translateX(10px);
    color: #000;
    background: #e0e0e0;
    padding: 0 5px;
    border-radius: 4px;
}