html, body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
}

/* Outer container for fixed top bar */
/* ========== FIXED TOP BAR ========== */
#topBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px; /* or your desired height */
  z-index: 1000;
  background: url('../image/title/topBar.svg') no-repeat center center;
  background-size: cover; /* or 100% 100% for full stretch */
}

#topBar object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.topBarOverlay {
  position: relative;
  z-index: 2;
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-sizing: border-box;
}

.topBarLogo {
  height: 50px;
  width: auto;
}

.topBarText {
  text-align: right;
  color: white;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.nameLine {
  font-weight: bold;
  font-size: 15px;
}

.codeLine {
  font-size: 13px;
  opacity: 0.8;
}