.app-pdf-wrapper{
    max-width:1200px;
    margin:auto;
    font-family:Inter,system-ui;
}

.dropzone{
    border:2px dashed #38bdf8;
    padding:40px;
    text-align:center;
    border-radius:16px;
    margin-bottom:20px;
    cursor:pointer;
    background:#020617;
    color:#e5e7eb;
}

.dropzone.dragover{
    background:#0f172a;
}

.main{
    background:#38bdf8;
    color:#020617;
    padding:12px 22px;
    border:none;
    border-radius:12px;
    font-weight:700;
    cursor:pointer;
    display:inline-block;
}

#pdfInput{
    display:none;
}

.download{
    margin-top:20px;
    width:100%;
}

.thumbs{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:20px;
}

.thumb{
    width:110px;
    height:150px;
    position:relative;
    background:#0f172a;
    border-radius:10px;
    overflow:hidden;
}

.thumb canvas{
    width:100%;
    height:100%;
}

.thumb button{
    position:absolute;
    top:6px;
    right:6px;
    background:red;
    color:#fff;
    border:none;
    border-radius:50%;
    width:22px;
    height:22px;
    cursor:pointer;
}

.thumb-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#0f172a;
    color:#e5e7eb;
    padding:10px;
    border-radius:10px;
    margin-bottom:10px;
}

.thumb-card .main{
    padding:6px 12px;
    font-size:14px;
}

.thumb-card .file-name{
    flex:1;
    margin-left:5px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.progress-container{
    width:100%;
    height:10px;
    background:#0f172a;
    border-radius:10px;
    margin:20px 0;
    overflow:hidden;
}

.progress-bar{
    height:100%;
    width:0%;
    background:#38bdf8;
    transition:width 0.3s ease;
}
