/**
 * NProgress overrides – blue bar above navbar, grows from left.
 * Bar color/height from CSS vars (inline style in layout).
 */
#nprogress {
  z-index: 99999 !important;
}
#nprogress .bar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  height: var(--nprogress-height, 4px) !important;
  background: var(--nprogress-color, #3b82f6) !important;
  z-index: 99999 !important;
  width: 100% !important;
}
#nprogress .peg {
  box-shadow: 0 0 10px var(--nprogress-color, #3b82f6), 0 0 5px var(--nprogress-color, #3b82f6) !important;
}
#nprogress .spinner {
  display: none !important;
}
