/* ==========================================
   ShinobiFlow - Custom CSS Styles
   ========================================== */

/* Neon Box Shadow Effect */
.neon-glow { 
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4); 
}

/* Glowing Text Effect */
.text-glow { 
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.6); 
}

/* Custom Scrollbar for Dashboard */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #0B1120;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #06b6d4;
}