/* Custom Scrollbar - Pure Pink Style */
:root {
    --pure-pink: #FF2E63;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #0D0D0D;
}

::-webkit-scrollbar-thumb {
    background: var(--pure-pink);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF5A85;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--pure-pink) #0D0D0D;
}