
#auth-slot .user-dropdown {
  position: relative;
}
#auth-slot .user-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  border: 1px solid rgba(2, 54, 85, 0.25);
  color: #023655;
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  transition: border-color .15s, color .15s;
}
#auth-slot .user-trigger:hover,
#auth-slot .user-trigger[aria-expanded="true"] {
  border-color: #0F766E;
  color: #0F766E;
}
#auth-slot .user-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #023655;
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#auth-slot .user-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 160px;
  background: #fff;
  border: 1px solid rgba(28, 27, 24, 0.12);
  border-radius: 10px;
  box-shadow: 0 12px 28px -8px rgba(2, 20, 28, 0.25);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 1003;
}
#auth-slot .user-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#auth-slot .user-menu a,
#auth-slot .user-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: #1C1B18;
}
#auth-slot .user-menu a:hover,
#auth-slot .user-menu button:hover {
  background: #F1EDE3;
  color: #0F766E;
}