.loader {
  width: 48px;
  height: 48px;
  border: 4px solid var(--secondary);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  margin-top: 16px;
  animation: spin 1s linear infinite;
}

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

.connection-warning {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
}

.warning-content {
  text-align: center;
  max-width: 300px;
}

.warning-title {
  color: var(--danger);
  font-size: 22px;
  margin-bottom: 12px;
}

.warning-text {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
}

.btn--primary {
  margin-top: 20px;
}

@media (prefers-reduced-motion: reduce) {
  .loader {
    animation: none;
  }
}
