/* Scoped CSS agar tidak bocor ke styling lain */
.progress-bar-inline {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    font-family: sans-serif;
  }
  .progress-bar-inline__label {
    margin-right: 8px;
    font-size: 0.9rem;
    color: #333;
    white-space: nowrap;
  }
  .progress-bar-inline__track {
    position: relative;
    width: 150px;    /* atur lebar sesuai kebutuhan */
    height: 12px;    /* atur ketebalan */
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
  }
  .progress-bar-inline__fill {
    width: 0;
    height: 100%;
    border-radius: 6px;
    transition: width 0.4s ease, background-color 0.4s ease;
  }
  .progress-bar-inline__text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    pointer-events: none;
    white-space: nowrap;
  }