/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.dark ::-webkit-scrollbar-thumb {
    background: #475569;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* Custom text selection */
::selection {
    background-color: rgba(59, 130, 246, 0.5); /* blue-500 with opacity */
    color: inherit;
}

.dark ::selection {
    background-color: rgba(96, 165, 250, 0.5); /* blue-400 with opacity */
    color: inherit;
}

/* Base body transition to avoid FOUC flicker on text if possible */
body {
    -webkit-tap-highlight-color: transparent;
}
