/* ============================================
   Wiple - Playful Architect
   Minimal supplementary CSS
   (Main styling via Tailwind CDN)
   ============================================ */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: #d9e2ff;
  color: #001944;
}

/* Hide scrollbar utility */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
