#rd-loading-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px; /* Thicker bar */
    z-index: 10000;
    pointer-events: none;
    display: none;
    opacity: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: opacity 0.2s ease;
}

#rd-loading-bar {
    width: 0%;
    height: 100%;
    background: #DCF222;
    box-shadow: 0 0 15px #DCF222, 0 0 5px rgba(0,0,0,0.2);
    /* Faster transition for the initial jump */
    transition: width 0.3s cubic-bezier(0.1, 0.5, 0.1, 1);
}