/* NEXORAIA LAB-04 · navegación integrada, sin burbuja flotante */
.nexora-back-inline{
  flex:0 0 auto;
  min-height:38px;
  padding:0 13px;
  border-radius:11px;
  border:1px solid #31547c;
  background:#09182a;
  color:#dceaff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font:inherit;
  font-size:12px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 8px 22px #0003;
  transition:.18s;
  white-space:nowrap;
}
.nexora-back-inline span{font-size:18px;line-height:1}
.nexora-back-inline b{font:inherit;font-weight:700}
.nexora-back-inline:hover{
  transform:translateX(-2px);
  border-color:#45a8ff;
  color:#fff;
  background:#10243c;
}

/* Cuando existe una topbar, el botón pasa a ser parte real de ella. */
.topbar.nexora-has-back,
.admin-top.nexora-has-back{
  gap:14px;
}
.topbar.nexora-has-back > .nexora-back-inline,
.admin-top.nexora-has-back > .nexora-back-inline{
  margin-right:2px;
}

/* Fallback para páginas sin cabecera compatible: ocupa su propia fila y no tapa contenido. */
.nexora-back-row{
  position:relative;
  z-index:5;
  width:100%;
  min-height:54px;
  padding:8px 18px;
  display:flex;
  align-items:center;
  background:#07111f;
  border-bottom:1px solid #1d2f47;
}

@media(max-width:820px){
  .nexora-back-inline{min-height:36px;padding:0 10px}
  .nexora-back-inline b{display:none}
  .nexora-back-row{min-height:48px;padding:6px 12px}
}
