/* Alpine.js cloak — oculta elementos até inicialização */
[x-cloak] { display: none !important; }

/* Minimal custom overrides */
.spinner {
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-left-color: #3b82f6;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

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