/* Wrapper de la barre de téléchargement */ #downloadProgressWrapper { width: 100%; max-width: 400px; height: 12px; background-color: #444; border-radius: 6px; overflow: hidden; margin: 10px auto; display: none; box-shadow: inset 0 1px 3px rgba(0,0,0,0.5); } /* Barre de progression */ #downloadProgress { height: 100%; width: 0%; background-color: var(--video-info-link-color, #4caf50); border-radius: 6px 0 0 6px; transition: width 0.2s ease; } #downloadProgressText { text-align: center; font-size: 0.8rem; color: #fff; content: ""; } /* Responsive pour mobile */ @media (max-width: 480px) { #downloadProgressWrapper { max-width: 90%; height: 10px; } #downloadProgressText { font-size: 0.7rem; } }