:host {
  display: flex;
  justify-content: center;
  align-items: center;
}
h4,
p {
  margin: 0;
}

.connect-agent-card {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  width: 100%;
}

.connect-agent-spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.connect-agent-card h2 {
  margin-bottom: 0.5rem;
  color: #333;
}

.connect-agent-card p {
  color: #666;
  line-height: 1.5;
}

.connect-agent-text {
  font-size: 0.8rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fallback-message {
  padding: 10px;
  color: #666;
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
}
