.progressbar-widget {
    position: relative;
    width: 100%;
    height: 24px;
    background-color: #ddd;
    border: 1px solid #aaa;
    border-radius: 3px;
    overflow: hidden;
    box-sizing: border-box;
}

.progressbar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #4080d0;
    transition: width 0.15s ease;
}

.progressbar-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    color: #333;
    text-shadow:
        -1px -1px 0 rgba(255,255,255,0.7),
         1px -1px 0 rgba(255,255,255,0.7),
        -1px  1px 0 rgba(255,255,255,0.7),
         1px  1px 0 rgba(255,255,255,0.7);
}
