/* --- Reading Progress Bar Styles --- */
/* Provided by StartWithSite.com */

/* --- 1. Easy Customization Variable --- */
:root {
    --progress-bar-color: #007bff;
    --progress-bar-height: 5px;
}

/* --- 2. Bar Styles --- */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: var(--progress-bar-height);
    background-color: var(--progress-bar-color);
    width: 0%; /* Starts at 0% width */
    z-index: 1000;
    transition: width 0.1s linear; /* Optional: for smoother updates */
}

/* --- Demo Page Styles (Optional) --- */
body {
    font-family: sans-serif;
    margin: 0;
    background-color: #f8f9fa;
}

.content {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    line-height: 1.8;
}