*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f4f6f8;
}

.body-verify{
    margin:0;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f5f5f5;
    font-family:Arial;
}

.card{
    background:white;
    padding:40px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    text-align:center;
}

.container{
    width:90%;
    max-width:900px;
    margin:40px auto;
}

h1{
    margin-bottom:20px;
    text-align:center;
}

.upload-box{
    border:3px dashed #1f7aec;
    background:white;
    border-radius:12px;
    padding:40px;
    text-align:center;
    cursor:pointer;
    transition:.3s;
}

.upload-box.drag{
    background:#dbeafe;
}

.upload-box button{
    margin-top:15px;
    padding:12px 25px;
    border:none;
    background:#1f7aec;
    color:white;
    border-radius:8px;
    cursor:pointer;
}

.progress-container{
    margin-top:20px;
}

.progress{
    width:100%;
    height:20px;
    background:#ddd;
    border-radius:30px;
    overflow:hidden;
}

.progress-bar{
    width:0%;
    height:100%;
    background:#1f7aec;
    transition:.3s;
}

#progressText{
    display:block;
    margin-top:5px;
}

#uploadBtn{
    margin-top:20px;
    width:100%;
    padding:15px;
    border:none;
    background:#16a34a;
    color:white;
    font-size:16px;
    border-radius:8px;
    cursor:pointer;
}

#search{
    width:100%;
    padding:12px;
    margin:20px 0;
}

table{
    width:100%;
    border-collapse:collapse;
    background:white;
}

th{
    background:#1f7aec;
    color:white;
}

th,td{
    padding:15px;
    border-bottom:1px solid #ddd;
    text-align:left;
}

.action-btn{
    border:none;
    padding:8px 12px;
    cursor:pointer;
    border-radius:5px;
    color:white;
}

.download{
    background:#16a34a;
}

.delete{
    background:#dc2626;
}

.selected-file{
    margin-top:20px;
    padding:15px;
    border:2px solid #1f7aec;
    border-radius:10px;
    background:#eef6ff;
    display:flex;
    gap:15px;
    align-items:center;
}

.file-info h4{
    margin:0;
}

.file-info p{
    margin:5px 0;
    color:#666;
}

.status{
    color:#16a34a;
    font-weight:bold;
}

@media(max-width:700px){
    table{
    display:block;
    overflow:auto;
    }
}