/* Custom Scrollbar for modern web browsers */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #09090B;
}

::-webkit-scrollbar-thumb {
    background: #18181B;
    border: 2px solid #09090B;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #10B981;
}

/* Selection highlight styling */
::selection {
    background-color: #10B981;
    color: #09090B;
}

::-moz-selection {
    background-color: #10B981;
    color: #09090B;
}

/* Smooth Scrolling site-wide */
html {
    scroll-behavior: smooth;
}
