.thumbnails-container {
  display: flex;
  flex-wrap: wrap;
}

.thumbnail-container {
 width: 200px;
  height: 200px;
  border: 1px solid #ccc;
  margin: 5px;
}

.thumbnail {
  width: 100%;
  height: 83%;
  object-fit: cover;
  cursor: pointer;
}

.thumbnail-container {
  display: flex;
  flex-direction: column;
}

.datetime {
  margin-top: auto;
  padding: 7px;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 13px;
  color: #fff;
}

.original-image-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
  text-align: center;
}

.original-image {
  max-width: 80%;
  max-height: 80%;
  margin: 20px auto;
}

.hidden {
  display: none;
}
