/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f111a; 
}
::-webkit-scrollbar-thumb {
    background: #2a2d3e; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #2547f4; 
}

.text-gradient {
    background: linear-gradient(to right, #2547f4, #9d4edd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.border-gradient-hover:hover {
    border-color: transparent;
    background-image: linear-gradient(#1b1e2b, #1b1e2b), linear-gradient(to right, #2547f4, #9d4edd);
    background-origin: border-box;
    background-clip: content-box, border-box;
}
