
.content label { font-weight:bold; display:block; margin-bottom:8px; }
.content input[type=file], .content select {
  width:100%;
  padding:12px;
  margin-bottom:15px;
  font-size:15px;
  border:1px solid #ccc;
  border-radius:6px;
  box-sizing:border-box;
}

/* BUTTON STYLE */
.btns {
  display:flex;
  justify-content:flex-end; /* right side */
  margin-top:10px;
  flex-wrap:wrap;
  gap:10px;
}
.app {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  width:max-content;
  gap:10px;
  padding:12px 22px;
  border:none;
  border-radius:4px;
  background:linear-gradient(135deg,#0a3d62,#07517d);
  color:#fff;
  font-weight:600;
  font-size:14px;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  transition:all .35s ease;
  box-shadow:0 6px 18px rgba(78,78,78,.25);
}
.app .text { transition:.3s ease; }
.app .iconn { transition:.35s ease; }
.app:hover { box-shadow:0 10px 25px rgba(0,0,0,.35); background:linear-gradient(135deg,#07517d,#0a3d62);}
.app:hover .iconn { transform:translateX(6px); }
.app:active { transform:scale(.96); box-shadow:0 4px 12px rgba(0,0,0,.3); }
.app::before {
  content:"";
  position:absolute;
  top:0;
  left:-75%;
  width:50%;
  height:100%;
  background:rgba(255,255,255,.2);
  transform:skewX(-20deg);
  transition:.6s;
}
.app:hover::before { left:120%; }
.download .app { background:#10b981; }
.download .app:hover { background:#059669; }

/* TABLE STYLING */
.images-table {
    overflow-x:auto;
    margin-top:20px;
}
.images-table table { width:100%; border-collapse:collapse; margin-top:20px; min-width:600px; }
.images-table th, .images-table td { text-align:center; padding:10px; border:1px solid #ddd; }
.images-table td{ background-color:whitesmoke; }
.images-table th { background-color:#0a3d62; color:white; }
.images-table .preview-img { width:60px; height:60px; object-fit:contain; border-radius:6px; border:1px solid #ccc; }

.progress { font-size:14px; color:#0a3d62; font-weight:bold; }

/* Responsive for small screens */
@media (max-width:650px){
  /* .btns { justify-content:center; } */
  table { min-width:100%; display:block; overflow-x:auto; }
}
