/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
    width:2px; /* Width of the scrollbar */
    height: 2px;
}

/* Track */
*::-webkit-scrollbar-track {
    background: transparent; /* Color of the track */
    border-radius: 10px; /* Rounded corners */
}

/* Handle */
*::-webkit-scrollbar-thumb {
    background: #999999; /* Color of the scroll thumb */
    border-radius: 10px; /* Rounded corners */
}

/* Handle on hover */
*::-webkit-scrollbar-thumb:hover {
    background: #555; /* Darker color when hovered */
}


/* Hide scrollbar for Chrome, Safari and Opera */
.setting_part .main_card::-webkit-scrollbar {
    width:5px !important; /* Width of the scrollbar */
}

