/* Custom scrollbar for better aesthetics */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #1e3a8a; /* Royal Blue */
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #172554;
}

/* Gradient text utility if needed */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
