.awning{
  position: relative;
  height: var(--navbar-height);
  overflow: visible;
  display:flex;
  align-items:flex-start;
  padding-top:8px;
  box-sizing: border-box;
  background-color: #2A2A2A;
}

.top-left-logo{
  position: absolute;
  top: 8px;
  left: 14px;
  
  display: flex;
  align-items: center;
  gap: 10px;

  background: transparent;
  width: auto;
  height: auto;
  padding: 0;
  box-shadow: none;
  overflow: visible;

  z-index: 12; /* stays above stripes + scallops */
}

/* Round icon */
.top-left-logo .brand-icon {
  height: 34px;          /* control height only */
  width: auto;           /* keep logo proportions */
  border-radius: 6px;    /* slight rounding (optional) */
  background: transparent;
  padding: 0;
  box-shadow: none;
  object-fit: contain;
}

.nav-user-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #d4dde5;
  max-width: 320px;
}

.nav-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-user-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  background: #425263;
  color: #f8fafc;
}

.nav-user-name {
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* TOP RIGHT ICONS */
.top-right-icons{
  margin-left:auto;
  margin-right:20px;
  z-index:12;
  display:flex;
  align-items:center;
  gap:14px;
}

.top-right-icons svg{
  width:36px;
  height:36px;
  opacity:0.9;
  color:#333;
}

.top-right-icons svg.menu-toggle{
  color: #677784;
}

@media (max-width: 899px) {
  .nav-user-name {
    display: none;
  }
}
