.reading-progress-bar {
    height: 4px;
    background: #1a535b;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 0%;
    transition: width 0.1s;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

html {
    scroll-behavior: smooth;
}

.prose {
    max-width: none;
}

.prose h2 {
    scroll-margin-top: 100px;
}

.prose h3 {
    scroll-margin-top: 100px;
}

/* Reading progress bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
    z-index: 9999;
    transition: width 0.1s ease;
}