/*Reading Progress Tracker & Goal Feedback*/

/* Progress bar container fixed at top */
#aikb-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #f0f0f0; /* soft light gray for subtle contrast */
  z-index: 9999;
}

/* The actual progress bar */
#aikb-progress-bar {
  height: 6px;
  background: #1e90ff; /* Dodger Blue — bright, clear, friendly */
  width: 0%;
  transition: width 0.25s ease-out;
}
