/* ============================================================
   HUSBAROMETERN - SPINNER
   ============================================================ */

.proc-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 28px 24px;
  margin: 0;
  background: #fff;
  border: 1px solid #dbe5d7;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

.proc-pulse-ring {
  position: relative;
  width: 64px;
  height: 64px;
}

.proc-pulse-ring::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(117, 175, 97, 0.15);
  animation: proc-pulse 2s ease-in-out infinite;
}

@keyframes proc-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.25);
    opacity: 0;
  }
}

.proc-spinner {
  width: 64px;
  height: 64px;
  animation: proc-spin 1.4s linear infinite;
}

@keyframes proc-spin {
  100% {
    transform: rotate(360deg);
  }
}

.proc-svg {
  width: 100%;
  height: 100%;
}

.proc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #3d464c;
  letter-spacing: 0;
  text-align: center;
}

.proc-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 240px;
}

.proc-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.proc-step--active {
  background: rgba(117, 175, 97, 0.12);
}

.proc-step--done .proc-step-text {
  color: #4a7a3a;
}

.proc-step--active .proc-step-text {
  color: #1d2b17;
  font-weight: 600;
}

.proc-step--pending .proc-step-text {
  color: #999;
}

.proc-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.proc-step-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
}

.proc-step-dot--active {
  width: 12px;
  height: 12px;
  background: #75af61;
  animation: proc-dot-pulse 1.2s ease-in-out infinite;
}

@keyframes proc-dot-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(117, 175, 97, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(117, 175, 97, 0);
  }
}

.proc-detail {
  font-size: 0.82rem;
  color: #666;
  text-align: center;
  max-width: 320px;
}
