@charset "utf-8";

.gallery {
  display: flex;
  flex-wrap: wrap; /* allow wrapping */
  gap: 1rem; /* spacing between thumbnails */
  padding-bottom: 1rem;
}

.gallery img {
  width: 80px; /* thumbnail size */
  height: 80px;
  border-radius: 0.2rem; /* optional: rounded corners */
}
