/* Page Transition Progress Bar */
#page-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #059669;
    z-index: 9999;
    transition: width 0.3s ease-out;
    /* box-shadow: 0 0 10px rgba(16, 185, 129, 0.5), 0 0 5px rgba(16, 185, 129, 0.5); */
    transform-origin: top;
    transform: scaleY(1);
}
