/* Fond gris */
#overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: auto;
  z-index: 900;
}

/* Popup centré */
#popup-container {
	display: none;
	position: fixed;
	top: 10%;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	max-width: 600px;
	height: 50%;
	border: none;
	box-shadow: none;
	z-index: 1000;
}

#popup-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.no-select {
  user-select: none;      /* empêche la sélection du texte */
  cursor: pointer;        /* curseur main comme un bouton */
}