/* Global Modern Premium Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #10b981, #34d399);
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #34d399, #10b981);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

/* Global scrollbar for Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #10b981 rgba(0, 0, 0, 0.3);
}