/* 
 * ==========================================
 * COMPONENT: Spinner
 * ==========================================
 */

.dig-spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: opacity 0.2s;
}

.dig-spinner-icon {
  width: 3rem;
  height: 3rem;
  border: 4px solid var(--dig-color-border);
  border-top-color: var(--dig-color-primary);
  border-radius: 50%;
  animation: dig-spin 1s linear infinite;
}

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

