/* Minimal account control: circular avatar + compact dropdown (solid colors, no gradients) */

.vortex-user-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.vortex-user-menu__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0d0d0d;
  cursor: pointer;
  color: #ffffff;
  overflow: hidden;
}

.vortex-user-menu__btn:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.vortex-user-menu__btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.vortex-user-menu__btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vortex-user-menu__initial {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.vortex-user-menu__panel {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 220px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 8px 0;
  z-index: 5000;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.vortex-user-menu.open .vortex-user-menu__panel {
  display: block;
}

.vortex-user-menu__meta {
  padding: 8px 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vortex-user-menu__meta strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vortex-user-menu__meta span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vortex-user-menu__link {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

.vortex-user-menu__link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.vortex-user-menu__link.danger {
  color: #f43f5e;
}

.vortex-user-slot--fixed {
  position: fixed;
  top: 20px;
  right: 24px;
  /* Below sidebar drawer (2000) so the menu/logo column is never covered */
  z-index: 1800;
}

@media (max-width: 640px) {
  .vortex-user-slot--fixed {
    top: 16px;
    right: 14px;
  }
}
