/* Verification Content Styles */
.verification-content {
  padding: 10px 0;
  width: 100%;
  display: none; /* Hidden by default */
}

/* Verification content starts directly with steps */

/* Steps styling */
.verification-steps {
  margin-bottom: 24px;
}

.verification-step {
  display: flex;
  align-items: center;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 8px;
  background-color: #2c3733; /* Green background for all steps */
  transition: all 0.3s ease;
}

.verification-step:last-child {
  margin-bottom: 0;
}

.verification-step.active {
  background-color: #00a86b;
}

.verification-step.completed {
  background-color: #137b55;
}

.verification-step.error {
  background-color: #8b0000;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #00ff99; /* Bright green */
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  margin-right: 16px;
  transition: all 0.3s ease;
}

.verification-step.active .step-number {
  background-color: #00ff99;
  color: #000000;
}

.verification-step.completed .step-number {
  background-color: #00ff99;
  color: #000000;
}

.verification-step.error .step-number {
  background-color: #ff3333;
  color: #ffffff;
}

.step-text {
  color: #ffffff;
  font-size: 1rem;
}

/* Result message */
.verification-result {
  margin-top: 24px;
  padding: 16px;
  border-radius: 8px;
  background-color: #00a86b;
  border-left: 4px solid #00ff99;
  color: #ffffff;
  display: none; /* Hidden by default */
}

.verification-result.success {
  border-left-color: #00ff99;
  background-color: #0f3e2d;
}

.verification-result.error {
  border-left-color: #ff3333;
  background-color: #3e0b0b;
}

.verification-result-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.verification-result-message {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Action button */
.verification-action {
  margin-top: 24px;
  width: 100%;
}

.verification-action-button {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background-color: hsl(143.93deg 100% 64.12%);
  color: #000000;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: none; /* Hidden by default, shown when process completes */
  opacity: 0.8;
}

.verification-action-button:hover {
  background-color: #00cc7a;
}

/* Spinner animation */
.step-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-left: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Check mark */
.step-check {
  display: inline-block;
  margin-left: 8px;
  font-weight: bold;
  color: #00e676;
}
