/* Custom overrides on top of Tailwind CDN */

/* Hide scrollbar for clean internal scrolling on select containers */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Simple fade-in animation for views */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}

/* Base cursor transition for interactables */
button, a {
    transition: all 0.2s ease-in-out;
}
