body {
  margin: 20px;
  font-family: Arial, sans-serif;
  background: #111;
  color: white;
}

#status {
  color: #ddd;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  background: #333;
}

.gallery img:hover {
  transform: scale(1.02);
}

.viewer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.viewer img {
  max-width: 90%;
  max-height: 90%;
}

#close {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 45px;
  cursor: pointer;
}
