/* static/progress.css */

#download-progress-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10001; /* Higher than notification container */
    display: none; /* Hidden by default */
    width: 130px;
    height: 130px;
    transition: opacity 0.3s ease;
}

.progress-ring {
    transform: rotate(-90deg); /* Start from the top */
}

.progress-ring__circle {
    transition: stroke-dashoffset 0.3s;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

#progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    text-align: center;
    font-weight: bold;
    line-height: 1.2;
} 