/* INPUT */
input[type="file"]{
  width:100%;
  padding:12px;
  border:1px solid #ccc;
  border-radius:6px;
  background:#fff;
  box-sizing: border-box;
}

/* BUTTON STYLE */
.btns{
  text-align:right;
  margin-top:15px;
}

/* BUTTON */
.app{
  padding:12px 20px;
  background:linear-gradient(135deg,#0a3d62,#07517d);
  color:#fff;
  border:none;
  border-radius:4px;
  cursor:pointer;
}


button:hover{
  background:#07517d;
}

/* TABLE */
table{
  width:100%;
  margin-top:20px;
  border-collapse:collapse;
}

th,td{
  border:1px solid #ddd;
  padding:10px;
  text-align:center;
}

th{
  background:#0a3d62;
  color:#fff;
}

td{
  background:#fafafa;
}

.preview{
  width:40px;
  height:40px;
  object-fit:contain;
  border:1px solid #ccc;
  border-radius:5px;
}

.status{
  font-size:13px;
  color:#0a3d62;
}

.download-btn{
  padding:5px 10px;
  font-size:12px;
}