/* Sidebar collapsed account-switcher — Brasa.
   The Vue component now renders an avatar with the account initials
   (`.sz-collapsed-acct-avatar`); the mask-image carret approach was
   retired. We keep this file just to reset any leftover rules from older
   builds and tighten the avatar styling. */

.sz-collapsed-acct-icon { display: none !important; }
.sz-collapsed-acct-btn::before { content: none !important; }

.sz-collapsed-acct-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sz-collapsed-acct-avatar {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  min-height: 28px !important;
  max-height: 28px !important;
  flex: 0 0 28px !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  background: #16a34a !important;
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  line-height: 1 !important;
  box-sizing: border-box !important;
}

/* Account-switcher separator: visible in both expanded and collapsed states,
   matching the .conversations-list-wrap separator style exactly (1px, color
   #D1D5DB / #282A2E). The stock 'aside[class*="w-[200px]"] .border-n-weak'
   rule only covers the expanded sidebar (w-[200px] class), so we add an
   explicit selector that targets both widths via .sz-sidebar-header. */
.sz-sidebar-header > .border-b.border-n-weak {
  display: block !important;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 1px solid #D1D5DB !important;
  margin: 0 8px !important;
}
.dark .sz-sidebar-header > .border-b.border-n-weak,
body.dark .sz-sidebar-header > .border-b.border-n-weak {
  border-bottom-color: #282A2E !important;
}
