.admin-topbar {
  flex-shrink: 0;
}
.role-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--icon-wash, #e7f2ea);
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.role-chip svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.admin-account {
  position: relative;
}
.admin-account summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px 4px 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  list-style: none;
}
.admin-account summary::-webkit-details-marker {
  display: none;
}
.admin-account details[open] summary {
  box-shadow: 0 0 0 3px rgba(27, 107, 69, 0.1);
}
.account-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font: 800 13px 'Plus Jakarta Sans', Inter, sans-serif;
}
.account-meta {
  display: grid;
  line-height: 1.2;
}
.account-meta strong,
.account-meta small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 160px;
}
.account-meta strong {
  font-size: 13px;
  color: var(--ink, #1b2420);
}
.account-meta small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}
.account-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 230px;
  padding: 17px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 45px rgba(20, 53, 42, 0.12);
  z-index: 130;
}
.account-menu strong,
.account-menu small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-menu strong {
  font-size: 13px;
}
.account-menu small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}
.profile-link {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding: 10px 11px;
  border-top: 1px solid var(--line);
  border-radius: 7px;
  color: #334039;
  font-size: 12px;
  font-weight: 700;
}
.profile-link:hover {
  background: #edf3ee;
  color: var(--green);
}
.account-menu form {
  margin-top: 3px !important;
  padding-top: 3px;
}
.account-menu button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border: 0;
  background: #f4f6f3 !important;
  color: #334039 !important;
  border-radius: 7px;
  padding: 10px 11px;
  font-weight: 700;
  cursor: pointer;
}
.account-menu button:hover {
  background: #e9efea !important;
  color: var(--green) !important;
}
@media (max-width: 760px) {
  .account-meta {
    display: none;
  }
  .admin-account summary {
    padding: 3px;
    border: 0;
    background: transparent;
  }
}
