<style>
.lightbox-thumb {
  max-width: 200px;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.2s;
}
.lightbox-thumb:hover {
  opacity: 0.8;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  text-align: center;
  padding-top: 60px;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 45px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
</style>
