/* Container around each milestone block + bar */
.progress-container {
    margin: 1rem 0;
  }
  
  /* Label above the bar (e.g., "60% complete") */
  .progress-label {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
  }
  
  /* Outer bar */
  .progress {
    width: 100%;
    background: #e5e7eb;
    border-radius: 6px;
    height: 10px;
    overflow: hidden;
  }
  
  /* Filled portion of the bar */
  .progress-fill {
    height: 100%;
    background: #3b82f6;
    border-radius: 6px;
  }
  