/* Custom Scrollbar Styling - Auto-hide until hover */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 10px;
    transition: background 0.3s ease;
}

body:hover ::-webkit-scrollbar-thumb {
    background: #192540;
}

::-webkit-scrollbar-thumb:hover {
    background: #69daff !important;
}

/* Global Selection Style */
::selection {
    background: rgba(105, 218, 255, 0.3);
    color: white;
}

/* Base transitions */
.transition-all {
    transition-duration: 300ms;
}

/* Glassmorphism utilities */
.glass-panel {
    background: rgba(25, 37, 64, 0.6);
    backdrop-filter: blur(20px);
}
