/* Custom scrollbar for windows */
.window-body::-webkit-scrollbar {
    width: 8px;
}

.window-body::-webkit-scrollbar-track {
    background: #0f172a;
}

.window-body::-webkit-scrollbar-thumb {
    background: #4f46e5;
    border-radius: 4px;
}

.window-body::-webkit-scrollbar-thumb:hover {
    background: #6366f1;
}

/* Horizontal scrollbar */
.window-body::-webkit-scrollbar:horizontal {
    height: 8px;
}

.window-body::-webkit-scrollbar-track:horizontal {
    background: #0f172a;
}

.window-body::-webkit-scrollbar-thumb:horizontal {
    background: #4f46e5;
    border-radius: 4px;
}

/* Firefox scrollbar for windows */
.window-body {
    scrollbar-color: #4f46e5 #0f172a;
    scrollbar-width: thin;
}

/* Taskbar scrollbar */
.taskbar-buttons::-webkit-scrollbar {
    height: 6px;
}

.taskbar-buttons::-webkit-scrollbar-track {
    background: transparent;
}

.taskbar-buttons::-webkit-scrollbar-thumb {
    background: #4f46e5;
    border-radius: 3px;
}

.taskbar-buttons::-webkit-scrollbar-thumb:hover {
    background: #6366f1;
