.center-text {
  text-align: center;
  display: block;
}

/* Le conteneur qui remplace l'iframe */
.reveal-wrapper {
  position: relative;
  background-color: #f5f7fa;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5em;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  
  /* --- AJOUTS IMPORTANTS POUR MOBILE --- */
  width: 100%; 
  min-height: 200px; /* Force une hauteur minimale visible quoi qu'il arrive */
  z-index: 1; /* S'assure qu'il n'est pas caché derrière un calque */
}

/* L'iframe est cachée au début */
.reveal-wrapper iframe {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: opacity 0.6s ease-in-out;
}

/* Une fois active, l'iframe s'affiche par dessus le bouton */
.reveal-wrapper.active iframe {
  opacity: 1;
  z-index: 10;
}

/* Le contenu du placeholder (Bouton + Texte) */
.reveal-placeholder-content {
  text-align: center;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.reveal-placeholder-content p {
  margin: 0;
  font-weight: bold;
  color: #555;
}

/* fix desktop header */
.md-header {
  z-index: 100; 
}

/* fix side header */
.md-sidebar {
  z-index: 100; 
}

/* fix mobile header */
.md-nav {
  z-index: 100; 
}