/* Fullscreen overlay */
#tph-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
}

#tph-overlay .tph-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

#tph-overlay .tph-container {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

#tph-overlay img#tph-image {
  max-width: 90vw;
  max-height: 90vh;
  height: auto;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  cursor: pointer;
}
