.lws-ew-progress {
    display: flex;
    flex-direction: column;
    gap: 8px;
    --lws-ew-progress: 0%;
}

.lws-ew-progress__label {
    font-size: 0.85em;
}

.lws-ew-progress__track {
    position: relative;
    width: 100%;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.lws-ew-progress__fill {
    position: absolute;
    inset: 0;
    width: var(--lws-ew-progress);
    background-color: currentColor;
    border-radius: 4px;
    transition: width 0.08s linear;
}
