/* Auth — navbar login button & profile badge */

.fba-auth-nav {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}

/* Discord login button */
.fba-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border: none;
  border-radius: 0.4rem;
  background: #5865f2;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  line-height: 1.4;
}
.fba-login-btn:hover {
  background: #4752c4;
}
.fba-login-btn svg {
  flex-shrink: 0;
}

/* Profile badge */
.fba-profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: 0.4rem;
  background: rgba(255,255,255,0.15);
  color: #f0ebe1;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

.fba-profile-name {
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fba-logout-btn {
  border: none;
  background: none;
  color: #f0ebe1;
  opacity: 0.6;
  cursor: pointer;
  font-size: 0.65rem;
  padding: 0 0.15rem;
  line-height: 1;
}
.fba-logout-btn:hover {
  opacity: 1;
}
