.progress-bar-container {
    text-align: center;
    font-family: "Arial", sans-serif;
    max-width: 800px;
    margin: auto;
}

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

.progress-bar-fill {
    height: 100%;
    background: #4A90E2;
    transition: width 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-radius: 10px;
}

.progress-bar-label {
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 5px;
}

.progress-bar-info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
}
