/* Elimina scroll del documento principal */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden; /* 🚫 sin scroll en la página */
}

/* Contenedor ocupa toda la ventana */
.bb-parent {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  display: flex;
  flex-direction: column;
  background: #000;
}

/* Banner superior */
.bb-banner {
  height: 56px;
  background: #f2c10c;
  flex: 0 0 auto;
}

/* Iframe ocupa todo lo demás y se scrolla solo él */
#bb-frame {
  flex: 1 1 auto;
  width: 100%;
  border: 0;
  min-height: 0;
  overflow: auto;   /* ✅ scroll aquí */
}
