
.section-box{
  background:#fafafa;
  border:1px solid #eee;
  border-radius:10px;
  padding:18px;
  margin-bottom:18px;
}

.label{
  display:block;
  font-size:14px;
  font-weight:600;
  margin-bottom:10px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
}

.thumb{
  aspect-ratio:1;
  border-radius:10px;
  overflow:hidden;
  border:1px solid #ddd;
  background:#f8f8f8;
}

.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.add{
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px dashed #ccc;
  cursor:pointer;
  font-size:12px;
}

.btn{
  width:100%;
  padding:14px;
  margin-top:15px;
  border:none;
  border-radius:10px;
  background:#111;
  color:#fff;
  cursor:pointer;
}

.result-box{
  display:none;
}

.files{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(170px,1fr));
  gap:12px;
  margin-top:15px;
}

.file-card{
  border:1px solid #ddd;
  border-radius:10px;
  background:#fff;
  padding:6px;
}

.file-card img{
  width:100%;
  height:120px;
  object-fit:cover;
  border-radius:8px;
}

.stats{
  font-size:11px;
  background:#f4f4f4;
  padding:6px;
  border-radius:6px;
  margin-top:6px;
  line-height:1.4;
}

.download{
  display:block;
  margin-top:6px;
  text-align:center;
  background:#0a3d62;
  color:#fff;
  padding:6px;
  border-radius:6px;
  text-decoration:none;
  font-size:11px;
}