.turbo-progress-bar {
    top: 57px !important;
    height: 3px; /* On double l'épaisseur pour la visibilité */
    /* background: linear-gradient(90deg, #ffc107 0%, #17a2b8 50%, #ffc107 100%); */
    background-color: #28a745;
    background-size: 200% 100%; /* Important pour l'animation */
    z-index: 1039;
    
    /* Animation de "flux" pour montrer que ça travaille */
    animation: turbo-glow 1.5s linear infinite;
    
    /* Effet néon plus marqué */
    box-shadow: 0 0 12px rgba(23, 162, 184, 0.8), 0 0 5px rgba(255, 193, 7, 0.5);
    border-radius: 0 4px 4px 0;
}

@keyframes turbo-glow {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}