/* Neo-brutalism Progress Bar for Blog Posts */

/* Progress bar container */
.progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px !important; /* Even smaller height */
    background-color: rgba(0, 0, 0, 0.05) !important;
    z-index: 999;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: hidden;
}

/* Progress bar indicator */
.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #000 !important;
    transition: width 0.2s ease;
    border: none !important;
    box-shadow: none !important;
}

/* Dark mode styles */
.dark .progress {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.dark .progress-bar {
    background-color: rgba(255, 255, 255, 0.7) !important;
}
