.photos-page {
}

.photos-page__add-photo-input {
  display: none;
}
.photos-page__add-photo {
  display: block;
  border: dashed 2px black;
  text-align: center;
  line-height: 100%;
}
.photos-page__add-photo span {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}


.photos-page__grid {
  position: fixed;
  top: 10vh;
  left: 10vh;
  height: 80vh;
  width: 80vw;
  display: flex;
  flex-flow: row wrap;
  gap: 1em;
  overflow-y: scroll;
}

.photos-page__add-photo,
.photos-page__existing-photo {
  display: block;
  width: 300px;
  height: 300px;
}
.photos-page__existing-photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.lazy-photo-list,
.lazy-photo-list > li {
  display: contents;
}

.lazy-photo-list__existing-photo-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
}
.lazy-photo-list__existing-photo-name {
  font-size: 0.6rem;
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  opacity: 0.5;
}
