.progress-bar-container {
    width: 100%;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 5px;
  
    &.has-label {
      justify-content: space-between;
    }
  
    &:not(.has-label) {
      .progress-bar-track {
        flex: 1;
      }
    }
  }
  
  .progress-bar-track {
    flex: 1;
    background-color: var(--ff-progress-bar-bg-color);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
  }
  
  .progress-bar {
    border-radius: 5px;
    transition: width 0.3s ease;
  }
  
  .progress-bar-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .progress-bar-label {
    max-width: 50px;
    font-size: 14px;
    color: var(--ff-card-status-text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  