.verified-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  vertical-align: middle;
  color: #3b82f6;
  animation: pulse-blue 2s infinite;
}

.verified-badge svg {
  fill: none;
  stroke: #3b82f6;
  stroke-width: 2.5;
  width: 16px;
  height: 16px;
}

.pending-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  vertical-align: middle;
  color: #f59e0b;
  animation: pulse-yellow 2s infinite;
}

.pending-badge svg {
  fill: none;
  stroke: #f59e0b;
  stroke-width: 2;
  width: 16px;
  height: 16px;
}

@keyframes pulse-blue {
  0% {
    filter: drop-shadow(0 0 0 rgba(59, 130, 246, 0.7));
  }
  70% {
    filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 0 rgba(59, 130, 246, 0.7));
  }
}

@keyframes pulse-yellow {
  0% {
    filter: drop-shadow(0 0 0 rgba(245, 158, 11, 0.7));
  }
  70% {
    filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 0 rgba(245, 158, 11, 0.7));
  }
}

.server-name {
  display: flex;
  align-items: center;
}
