/* Progress Bar */
.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(105, 33, 0, 0.1);
    z-index: 1100;
}

.progress-bar {
    height: 100%;
    background-color: rgba(105, 33, 0, 0.8);
    width: 0;
    transition: width 0.1s ease;
}

/* Article Length Indicator */
.gh-article-length {
    position: fixed;
    top: 3px;
    right: 0;
    padding: 0.5rem 1rem;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-primary);
    background-color: var(--color-background);
    z-index: 1100;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.gh-article-length:hover {
    opacity: 1;
}