.scrollable-hidden-scrollbar {
        overflow-y: auto;
        max-height: 100vh;
        padding-right: 15px; /* to prevent content cutoff */
    }

    /* Hide scrollbar for WebKit browsers */
    .scrollable-hidden-scrollbar::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    /* Hide scrollbar for Firefox */
    .scrollable-hidden-scrollbar {
        scrollbar-width: none; /* Firefox */
    }

    /* Hide scrollbar for Edge, IE */
    .scrollable-hidden-scrollbar {
        -ms-overflow-style: none; /* IE and Edge */
    }