/* ==========================================
   GLOBAL CHAT MENU
========================================== */

.global-chat-menu {
  position: fixed;

  min-width: 210px;

  background: var(--surface);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 16px;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);

  backdrop-filter: blur(18px);

  overflow: hidden;

  display: none;

  opacity: 0;

  transform: translateY(10px) scale(0.95);

  transition: 0.25s ease;

  z-index: 99999;
}

.global-chat-menu.active {
  display: block;

  opacity: 1;

  transform: translateY(0) scale(1);
}

/* ==========================================
   MENU BUTTON
========================================== */

.global-menu-item {
  width: 100%;

  border: none;

  background: transparent;

  color: var(--text-primary);

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 14px 18px;

  cursor: pointer;

  font-size: 15px;

  transition: 0.25s;
}

.global-menu-item:hover {
  background: #22324d;
}
