 /* ===== TOPBAR ===== */
  .topbar{
    position:fixed; top:0; left:0; right:0;
    height:var(--topbar-h);
    z-index:1030;
    background:var(--top-bg);
    color:var(--top-fg);
    border-bottom:1px solid var(--border-w);
    color-scheme: dark;
  }
  
  /*mobile collapse*/
  .ua-navbar-collpase
  {
	  background:var(--top-bg);  
  }
  
  .topbar .brand{
    display:flex; align-items:center; gap:.75rem;
    font-family: var(--font-title);
    font-weight: 800;
    letter-spacing:-0.02em;
    white-space:nowrap;
  }
  .topbar .brand-mark{
    width:30px; height:30px; border-radius:9px;
    display:flex; align-items:center; justify-content:center;
    background: rgba(245,245,245,.12);
    font-size:.9rem;
    flex:0 0 auto;
  }
  .topbar .btn{
    color: var(--top-fg) !important;
    border:1px solid rgba(245,245,245,.18);
    background: rgba(245,245,245,.06);
    border-radius:12px;
	margin: 0 0.5rem;
	font-size: var(--font-size-p) !important;
  }
  .topbar .btn:hover{ background: rgba(245,245,245,.10); }

  /* FIX: dropdown readability (items must be dark on white) */
  .topbar .dropdown-menu{
    background:#fcfcfc;
    border:1px solid rgba(0,0,0,.10);
    border-radius:14px;
    padding:.35rem;
  }
  .topbar .dropdown-item{
    color:var(--ink-500);
    border-radius:10px;
    font-family: var(--font-body);
    font-weight: 400;
	font-size: var(--font-size-p);
  }
  .topbar .dropdown-item:hover{ background:#f2f2f2; }
  .topbar .dropdown-divider{ margin:.35rem .25rem; }
  .topbar .ua-logo{height: 30px; max-height: 35px;}
  .topbar .ua-app-name
   {  font-size: 11px;
	  line-height: 9px;
	  border-left: 1px solid #f5f5f5;
	  padding-left: 0.5rem;
	  font-weight: 400;
   }
   .user-item{ line-height: .75rem; text-align: right;}
   
   @media(max-width:768px)
   {
	  .ua-navbar-collpase
	  {
		margin: 0.5rem -1rem -0.5rem;
		padding-top: 0.5rem;
		background: var(--side-bg);	 
		border-bottom-left-radius: 8px;
		border-bottom-right-radius: 8px;		
	  }
	  .topbar .btn{
		border:1px solid rgba(245,245,245,.18);
		border-radius: 2px;
		width: 100%;
		text-align: left;
		padding-bottom: .5rem;
	  }
	  .topbar .dropdown-menu{
		background:var(--ink-200);
		border:1px solid rgba(0,0,0,.10);
		border-radius: 0px;
		padding:.35rem;
		margin: 0 .5rem;
	  }
	  .topbar .dropdown-item
	  {
		  color:var(--ua-white-00);
	  }
	  .topbar .dropdown-item:hover
	  { 
		background:var(--ink-100);
	  }
	  
	  .topbar .dropdown 
	  {
		  margin-left: -.5rem;
	  }
   }