
#bottom, #bottom .pagecontainer
{
	line-height: normal; 
}

@media (max-width: 1024px) {
    .parcontainer {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .parcontainer {
        width: 100%;
    }
}

.lightbox-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.9);
  display: none;                 /* standaard onzichtbaar */
  z-index: 999999;
  align-items: center;           /* centreren werkt zodra display:flex actief is */
  justify-content: center;
}

.lightbox-overlay.open {          /* alleen bij openen zichtbaar */
  display: flex;
}

.lightbox-overlay img {
  max-width: 95vw;
  max-height: 95vh;
  box-shadow: 0 0 12px #000;
  border-radius: 4px;
  cursor: zoom-out;
  display: block;
}


