@tailwind base;
@tailwind components;
@tailwind utilities;

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #d1d5db; 
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9ca3af; 
}