/* OC Reading Progress — thin fixed bar, accent color from the theme
   (--g-color already flips with dark/light automatically). */

.ocrp-bar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: transparent;
	z-index: 9998;
	pointer-events: none;
}

.ocrp-bar-fill {
	height: 100%;
	width: 0%;
	background: var(--g-color, #ff184e);
	transition: width 0.1s linear;
}
