/* [B] Elementor Reading Progress Bar - Base Styles */

.bdw-erpbar-wrapper {
    position: fixed;
    left: 0;
    width: 100%;
    /* Default properties, overridden dynamically by Elementor */
    height: 4px;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: 9999;
    pointer-events: none; /* Prevents blocking clicks on elements underneath */
}

.bdw-erpbar-fill {
    height: 100%;
    width: 0%;
    background-color: #003366; /* Fallback brand color */
    transition: width 0.1s ease-out; /* Smooth transition smoothing */
    will-change: width;
}
