  .mini-progress{
    --mp-track: #e5edf7;
    --mp-fill: #3b82f6;
    --mp-text: #ffffff;

    width: 100%;
    max-width: 360px; /* 可自行調整 */
    font-family: system-ui, -apple-system, "Segoe UI", Arial, "Noto Sans TC", sans-serif;
	/*
	margin-right:auto;
	margin-left:3rem;
	*/
  }

  .mini-progress .mp-bar{
    position: relative;
    height: 18px;
    background: var(--mp-track);
    border-radius: 12px;
    overflow: hidden;
  }

  .mini-progress .mp-fill{
    position: absolute;
    inset: 0 auto 0 0;
    width: 0%;
    background: linear-gradient(90deg, #60a5fa, var(--mp-fill));
    transition: width 0ms ease;	/* 動畫效果先改0ms 移除掉 */
  }

  /* 🔑 文字疊在 bar 裡面 */
  .mini-progress .mp-text{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--mp-text);
    pointer-events: none;
    text-shadow: 0 1px 2px rgba(0,0,0,.25);
    z-index: 1;
  }