/* Custom scrollbar for a polished look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fdf4ff; 
}
::-webkit-scrollbar-thumb {
    background: #e879f9; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #c026d3; 
}

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

/* Selection Color */
::selection {
    background: #f5d0fe; /* charm-200 */
    color: #701a75; /* charm-900 */
}