.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  width: 100%;
  height: 100%;
  text-align: center;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.spinner {
  width: 48px;
  height: 48px;
  animation: spin 1s linear infinite;
  color: #16a34a; /* verde similar a text-green-600 */
}

.spinner-bg {
  opacity: 0.25;
}

.spinner-fg {
  opacity: 0.75;
}

.texto {
  color: #374151; /* gris similar a text-gray-700 */
  font-size: 1rem;
  font-weight: 500;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
