.discord-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #5865F2;
  color: white;
  padding: 3px 10px 3px 3px;
  border-radius: 6px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  max-width: fit-content;
  vertical-align: middle;
  line-height: 1;
}

.discord-badge:hover {
  background: #4752C4;
}

.discord-badge-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  background: #2f3136;
  flex-shrink: 0;
}

.discord-badge-username {
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
}

.discord-badge-loading {
  opacity: 0.6;
}

.discord-badge-error {
  background: #ed4245;
  cursor: default;
}

.discord-badge-error:hover {
  background: #ed4245;
}