#drop-area{

border:4px dashed #999;

padding:60px;

text-align:center;

background:#fafafa;

cursor:pointer;

border-radius:15px;

transition:.3s;

}

#drop-area.highlight{

border-color:#0073aa;

background:#eef8ff;

}

#fileElem{

margin-top:20px;

}

#gallery{

margin-top:30px;

display:flex;

flex-wrap:wrap;

gap:15px;

}

.thumb{

width:150px;

height:150px;

object-fit:cover;

border-radius:10px;

box-shadow:0 0 10px rgba(0,0,0,.2);

}
#uploadProgress{

    width:100%;

    background:#ddd;

    height:28px;

    border-radius:20px;

    overflow:hidden;

    margin-top:20px;

    display:none;

}

#uploadBar{

    width:0%;

    height:100%;

    background:#28a745;

    transition:width .25s;

}

#uploadStatus{

    margin-top:12px;

    font-size:18px;

    font-weight:bold;

}