/* Auth header chip — signed-in state visible without opening sidebar */
.bc-auth-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 0.5rem;
  vertical-align: middle;
  max-width: min(52vw, 14rem);
}
.bc-auth-chip-link,
.bc-auth-chip-settings,
.bc-auth-chip-logout {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
  min-height: 36px;
}
.bc-auth-chip-link {
  background: rgba(13, 110, 253, 0.12);
  color: #0a58ca;
  max-width: 100%;
  overflow: hidden;
}
.bc-auth-chip-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 9rem;
}
.bc-auth-chip-settings,
.bc-auth-chip-logout {
  background: rgba(0, 0, 0, 0.06);
  color: #333;
  padding: 0.35rem 0.5rem;
}
.bc-auth-chip-logout {
  color: #b02a37;
}
.bc-auth-chip-link:hover,
.bc-auth-chip-settings:hover,
.bc-auth-chip-logout:hover {
  filter: brightness(0.95);
  text-decoration: none;
}
@media (max-width: 575.98px) {
  .bc-auth-chip {
    margin-right: 0.25rem;
    max-width: 46vw;
  }
  .bc-auth-chip-label {
    max-width: 4.5rem;
  }
  .bc-auth-chip-settings {
    display: none;
  }
}
