/* ============================================================
   Agent X7 Topbar Styles
   ============================================================ */

#x7-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  background: rgba(7,13,18,0.97);
  border-bottom: 1px solid rgba(0,255,178,0.2);
  box-shadow: 0 2px 16px rgba(0,255,178,0.07);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.x7-topbar-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  pointer-events: none;
}
.x7-topbar-title {
  font-size: 1rem;
  font-weight: 800;
  color: #00ffb2;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(0,255,178,0.5);
  text-transform: uppercase;
}
.x7-topbar-sub {
  font-size: 9px;
  color: rgba(0,255,178,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* When topbar is active, hide floating menu button */
body.x7-topbar-active .x7-menu-button {
  display: none;
}

@media (max-width: 480px) {
  #x7-topbar { padding: 0 48px; }
  .x7-topbar-title { font-size: 0.9rem; }
}
