/* ═══ TopBars específicos ═══ */

/* Nav TopBar: 3 filas (back/voz · instrucción grande · stats) */
.navtb {
  padding: 0 12px 12px;
}
.navtb-row1 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  min-height: 50px;
}
.navtb-row2 {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 4px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 14px;
  margin-bottom: 8px;
}
.navtb-step-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #060912;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: 8px;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
}
.navtb-step-body {
  flex: 1;
  min-width: 0;
  padding-right: 12px;
}
.navtb-step-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 2px;
}
.navtb-step-dist {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #00d4ff;
  letter-spacing: 0.4px;
}
.navtb-row3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.navtb-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px 10px;
  text-align: center;
}
.navtb-stat b {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navtb-stat span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}
