/* index.css */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050505;
}
::-webkit-scrollbar-thumb {
    background: #1f2e2b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #11d4b4;
}

.neon-glow {
    box-shadow: 0 0 20px -5px rgba(17, 212, 180, 0.3);
}

/* index.css - Adăugire pentru zona de terminal */
.scrollbar-thin::-webkit-scrollbar {
    width: 6px;
}
.scrollbar-thin::-webkit-scrollbar-track {
    background: #0c1210;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
    background: #1f2e2b;
    border-radius: 3px;
}
.scrollbar-thin::-webkit-scrollbar-thumb:hover {
    background: #11d4b4;
}