/* Smart Download UI Components */

.dl-progress-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
    position: relative;
}

.dl-progress-bar {
    height: 100%;
    background: var(--accent);
    width: 0%;
    animation: dlProgress 15s linear forwards;
}

@keyframes dlProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.btn-dl.processing {
    cursor: wait;
    filter: saturate(0.5);
}