/* SIMULADOR LAUNCHER */
.simulador-launcher {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sim-bar {
  background: var(--ink); color: #fff; padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-shrink: 0;
}
.sim-bar .btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }
.sim-bar-title { font-size: 14px; }
.sim-bar .muted { color: rgba(255,255,255,0.6) !important; }

/* Área de contenido — ocupa todo el espacio restante */
.sim-frame { flex: 1; overflow: hidden; position: relative; }

/* iframe a pantalla completa */
.sim-iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none; display: block;
}

/* Contenido centrado (carga, error, mock) */
.sim-center {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px;
  background: var(--bg-2);
  text-align: center;
}

.sim-mock {
  background: var(--surface); border-radius: var(--radius-xl); border: 1px solid var(--border);
  padding: 48px; max-width: 600px; width: 100%;
}
