*{box-sizing:border-box}

.global-navbar-shell{
  position:sticky;
  top:0;
  z-index:1200;
  background:linear-gradient(135deg,#17395d,#214c7a);
  color:white;
  box-shadow:0 8px 22px rgba(0,0,0,0.12);
}

.global-navbar{
  max-width:1180px;
  margin:auto;
  padding:14px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.global-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  text-decoration:none;
  color:white;
}

.global-brand img{
  width:52px;
  height:52px;
  border-radius:14px;
  background:white;
  padding:4px;
  object-fit:cover;
  flex-shrink:0;
}

.global-brand-text h1{
  margin:0;
  font-size:28px;
  line-height:1.05;
}

.global-brand-text p{
  margin:4px 0 0;
  font-size:13px;
  color:#d7e5f4;
}

.global-nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.global-nav-link,
.global-nav-btn,
.global-nav-bell{
  color:white;
  background:rgba(255,255,255,0.13);
  padding:10px 14px;
  border-radius:10px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  border:none;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
}

.global-nav-link.active{
  background:white;
  color:#17395d;
}

.global-nav-bell{
  position:relative;
  min-width:46px;
  padding:10px 12px;
}

.global-nav-badge{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:20px;
  height:20px;
  padding:0 6px;
  border-radius:999px;
  background:#d92d20;
  color:white;
  font-size:11px;
  font-weight:bold;
  display:none;
  align-items:center;
  justify-content:center;
  line-height:20px;
}

.global-menu-toggle{
  display:none;
  background:rgba(255,255,255,0.13);
  color:white;
  border:none;
  border-radius:10px;
  font-size:22px;
  width:46px;
  height:46px;
  cursor:pointer;
}

@media (max-width:760px){
  .global-navbar{
    align-items:flex-start;
  }

  .global-brand img{
    width:48px;
    height:48px;
  }

  .global-brand-text h1{
    font-size:24px;
  }

  .global-menu-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .global-nav-actions{
    width:100%;
    display:none;
    flex-direction:column;
    align-items:stretch;
  }

  .global-nav-actions.show{
    display:flex;
  }

  .global-nav-link,
  .global-nav-btn,
  .global-nav-bell{
    width:100%;
    justify-content:center;
  }
}