::selection {
    background-color: rgba(80, 200, 120, 0.3);
    color: #a5e3bc;
}
html {
    scroll-behavior: smooth;
}
/* Custom Scrollbar for Terminal Windows */
.terminal-scroll::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.terminal-scroll::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 4px;
}
.dark .terminal-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}
.terminal-scroll::-webkit-scrollbar-thumb {
    background: rgba(80, 200, 120, 0.5);
    border-radius: 4px;
}
.terminal-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(80, 200, 120, 0.8);
}