#download-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dim background */
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    z-index: 1000;
}

/* Progress bar container */
.progress-container {
    width: 50%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

/* Progress bar */
.progress-bar {
    width: 0%;
    height: 10px;
    background: #4caf50;
    border-radius: 5px;
    transition: width 0.3s ease-in-out;
}

/* Progress text */
#progress-text {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}