/* Installer Wizard — standalone styles */
/* Tailwind CDN handles most styling; ini hanya override minimal */

/* Pastikan transisi smooth untuk progress bar */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Smooth scroll untuk halaman */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar agar tidak mengganggu card */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #c7d2fe;
  border-radius: 3px;
}

/* Loading state untuk tombol submit */
button[type="submit"]:active {
  opacity: 0.8;
  transform: scale(0.99);
}
