/* Custom Scrollbar Styling */

/* Width */
::-webkit-scrollbar {
    width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    background: rgb(241, 249, 249);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgb(184, 224, 224);;
    border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgb(174, 214, 214);
}

/* Prevent Page Shift */
body {
    overflow-y: scroll;
    overflow-x: hidden; /* Hide the horizontal scrollbar */
}
