/* Progress Bar Container */
.mp-sct-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #f0f0f0;
    z-index: 9999;
    margin: 0;
    padding: 0;
}

/* Progress Bar Fill - Remove fixed color */
.mp-sct-progress-fill {
    height: 100%;
    width: 0;
    /* Color removed here - will be set dynamically */
    transition: width 0.3s ease;
}

/* Admin Bar Compatibility */
.admin-bar .mp-sct-progress-container {
    top: 32px;
}

/* Reading Time Display */
.mp-sct-reading-time {
    padding: 10px 0;
    font-size: 0.9em;
    color: #666;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

/* Mobile View */
@media screen and (max-width: 782px) {
    .admin-bar .mp-sct-progress-container {
        top: 46px;
    }
}