/* Fullscreen iframe styling */
#fullIframe,
.full-iframe {
  display: block;
  border: none;
  width: 100%;
  height: 100%;
}

.hidden-iframe {
  width: 1px;
  height: 1px;
  opacity: 0;
  position: absolute;
  top: -1000px; /* Move off-screen */
  left: -1000px;
  pointer-events: none;
}

/* Website Screenshot */
#previewwebsite {
  display: none;
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1em;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}
