.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;
  }
  
  .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;
    cursor:grab;
  }
  
  .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;
  }
  
  #fileList{
    margin-top:10px;
    font-size:14px;
  }
  