/* Add any custom CSS here that cannot be handled by Tailwind or overrides Tailwind */
/* For example, if you want very specific scrollbar styling or other global adjustments */

/* Hide scrollbar for the carousel itself, as navigation is handled by JS */
.carousel-slides {
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.carousel-slides::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
