/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0f172a; 
}
::-webkit-scrollbar-thumb {
    background: #334155; 
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569; 
}

/* Base transitions */
a, button, .transition-all {
    transition: all 0.3s ease;
}

/* Glassmorphism utility */
.glass {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Text selection handled by Tailwind, enforcing fallback */
::selection {
    background: #4f46e5;
    color: white;
}