/* Pequenos ajustes sobre o Tailwind CDN (utilitário, sem build step) */

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

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(203 213 225);
    border-radius: 9999px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

.js-alert {
    animation: alert-in 0.2s ease-out;
}

@keyframes alert-in {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}
