/* Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    z-index: 9999;
    pointer-events: none;
}

.reading-progress-bar-fill {
    height: 100%;
    background-color: #00484A; /* Datama dark green - matches theme */
    width: 0%;
    transition: width 0.1s ease-out;
}

