/* Custom overrides on top of Tailwind CDN */

/* Dark-theme scrollbar */
::-webkit-scrollbar        { width: 10px; height: 10px; }
::-webkit-scrollbar-track  { background: #0a0e14; }
::-webkit-scrollbar-thumb  {
    background: #1e2532;
    border-radius: 4px;
    border: 2px solid #0a0e14;
}
::-webkit-scrollbar-thumb:hover { background: #2a3241; }

/* Teal selection */
::selection { background: rgb(45 212 191 / 0.3); color: #e2e8f0; }

/* Font rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global default transition speed for Tailwind's `transition` utility */
* { transition-duration: 150ms; }

/* Alpine.js: hide elements with x-cloak until Alpine has processed them. */
[x-cloak] { display: none !important; }

