.download-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.download-box{

    width:360px;
    background:#fff;
    border-radius:12px;
    padding:25px;
    position:relative;
    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.download-box h2{
    margin-top:0;
    text-align:center;
}

.download-box input{

    width:100%;
    padding:12px;
    border-radius:8px;
    border:1px solid #ccc;
    outline:none;
    font-size:16px;
    box-sizing:border-box;

}

.download-box button{

    width:100%;
    margin-top:15px;
    padding:12px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    background:#28a745;
    color:#fff;
    font-size:16px;

}

.close-modal{

    position:absolute;
    right:15px;
    top:8px;
    font-size:30px;
    cursor:pointer;

}

#downloadError{

    color:red;
    text-align:center;
    margin-top:10px;
    min-height:20px;

}