/* Coactive Progress Page Styles */

.coactive-progress-page-container {
  font-family: Arial, sans-serif;
  text-align: center;
  padding-top: 100px;
  background-color: #f8f9fa;
  color: #333;
  min-height: 100vh;
  margin: 0;
}

.coactive-progress-message {
  margin-top: 20px;
  font-size: 24px;
  color: #333;
  font-weight: 600;
  margin-bottom: 30px;
}

.coactive-spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #C43B8D;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: coactive-spin 1s linear infinite;
  margin: 40px auto;
}

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

.coactive-progress-wait-text {
  font-size: 16px;
  color: #666;
  margin-top: 30px;
}

/* Reset styles to prevent theme interference */
.coactive-progress-page-container * {
  box-sizing: border-box;
}

.coactive-progress-page-container h2 {
  margin: 0 0 30px 0;
  padding: 0;
}

.coactive-progress-page-container p {
  margin: 30px 0 0 0;
  padding: 0;
}
