/* Minimal özel stiller — çoğu Tailwind/DaisyUI CDN'den. */
:root {
  color-scheme: light;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.spinner {
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: #e91e63;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  animation: spin 0.6s linear infinite;
}

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

[x-cloak] {
  display: none !important;
}
