/* FRA Prop HQ v11.1.2 — permanently remove dashboard topbar title */

/* Chrome/Edge: tie the rule directly to the active dashboard so later JS cannot bring Overview back. */
html body:not(.signed-out):has(#view-dashboard.active) #appShell .topbar .topbar-left > div,
html body:not(.signed-out):has(#view-dashboard.active) #appShell .topbar #pageTitle,
html body:not(.signed-out):has(#view-dashboard.active) #appShell .topbar #pageSubtitle{
  display:none!important;
}

html body:not(.signed-out):has(#view-dashboard.active) #appShell .topbar{
  justify-content:flex-end!important;
}

html body:not(.signed-out):has(#view-dashboard.active) #appShell .topbar .topbar-left{
  flex:0 0 auto!important;
  min-width:0!important;
  width:0!important;
  overflow:hidden!important;
}

@media (max-width:760px){
  html body:not(.signed-out):has(#view-dashboard.active) #appShell .topbar .topbar-left{
    width:auto!important;
    overflow:visible!important;
  }
  html body:not(.signed-out):has(#view-dashboard.active) #appShell .topbar .topbar-left > div{
    display:none!important;
  }
}
