/* Custom additions on top of Tailwind CSS */

/* Custom Scrollbar for sleek aesthetic */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0b1121; 
}

::-webkit-scrollbar-thumb {
    background: #1e3a8a; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3b82f6; 
}

/* Glassmorphism Utilities (if needed beyond Tailwind arbitrary values) */
.glass-panel {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Micro-animations */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px -10px rgba(56, 189, 248, 0.2);
}
