/* assets/css/style.css */
/* Tailwind will handle most of the styling, but we can add custom CSS here if necessary */

html, body {
    scroll-behavior: smooth;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #df4661; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #c91030; 
}
