/* Custom styles */
body {
    scroll-behavior: smooth;
}

/* Smooth transitions */
.transition-all {
    transition: all 0.3s ease-in-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #dfe7ff;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF0000;
} 

.bg-secondary {
    background-color: #e8eeff;
}

.text-secondary {
    color: #0A2472;
}
.bg-gray-100.py-4{
    background-color: #e8eeff;
    padding: 2rem;
}