
/* V437N - Compact activity header in Admin notification center */
.v437n-active-compact{
  position:relative;
  border-bottom:1px solid var(--border);
  background:color-mix(in srgb,var(--muted) 24%,var(--background));
}
.v437n-active-toggle{
  width:100%;
  min-height:54px;
  display:grid;
  grid-template-columns:36px minmax(0,1fr) 20px;
  align-items:center;
  gap:9px;
  padding:8px 11px;
  border:0;
  background:transparent;
  color:var(--foreground);
  text-align:left;
  cursor:pointer;
}
.v437n-active-toggle:hover{
  background:color-mix(in srgb,var(--muted) 60%,transparent);
}
.v437n-active-avatar,
.v437n-row-avatar{
  position:relative;
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--muted);
}
.v437n-active-avatar img,
.v437n-active-avatar>span,
.v437n-row-avatar img,
.v437n-row-avatar>span{
  width:100%;
  height:100%;
  border-radius:50%;
}
.v437n-active-avatar img,
.v437n-row-avatar img{
  display:block;
  object-fit:cover;
}
.v437n-active-avatar>span,
.v437n-row-avatar>span{
  align-items:center;
  justify-content:center;
  font-size:10px;
  font-weight:800;
  color:var(--muted-foreground);
}
.v437n-active-avatar>i,
.v437n-row-avatar>i{
  position:absolute;
  right:-1px;
  bottom:-1px;
  width:9px;
  height:9px;
  border:2px solid var(--background);
  border-radius:50%;
  background:#16a34a;
}
.v437n-active-copy{
  min-width:0;
}
.v437n-active-copy strong{
  display:block;
  font-size:9.5px;
  line-height:1.25;
}
.v437n-active-copy small{
  display:block;
  margin-top:2px;
  font-size:7.8px;
  color:var(--muted-foreground);
}
.v437n-active-toggle>b{
  justify-self:end;
  font-size:13px;
  color:var(--muted-foreground);
}

.v437n-active-popover{
  max-height:245px;
  overflow:auto;
  padding:5px 8px 8px;
  border-top:1px solid var(--border);
  background:var(--background);
}
.v437n-active-row{
  display:grid;
  grid-template-columns:32px minmax(0,1fr);
  align-items:center;
  gap:8px;
  min-height:46px;
  padding:6px 4px;
  border-bottom:1px solid var(--border);
}
.v437n-active-row:last-child{
  border-bottom:0;
}
.v437n-active-row:not(.online){
  opacity:.66;
}
.v437n-row-avatar{
  width:30px;
  height:30px;
}
.v437n-row-avatar>i{
  width:8px;
  height:8px;
  background:#94a3b8;
}
.v437n-active-row.online .v437n-row-avatar>i{
  background:#16a34a;
}
.v437n-active-row>div:last-child{
  min-width:0;
}
.v437n-active-row strong{
  display:block;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:8.8px;
}
.v437n-active-row small{
  display:block;
  margin-top:2px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:7.5px;
  color:var(--muted-foreground);
}

/* hide legacy activity strip if any cached CSS/class remains */
.v437h-panel .v437i-active-strip{
  display:none!important;
}

@media(max-width:640px){
  .v437n-active-toggle{
    min-height:50px;
    grid-template-columns:32px minmax(0,1fr) 18px;
    padding:7px 9px;
  }
  .v437n-active-avatar{
    width:30px;
    height:30px;
  }
  .v437n-active-popover{
    max-height:220px;
  }
}
