.scroll-wrapper {
    width: 100%;
    height: 100vh;
    overflow: hidden; /* Hide default scrollbar */
    position: relative;
}

.scroll-content {
    height: 100%;
    overflow-y: scroll;
    padding-right: 20px;
    
    /* Completely hide scrollbar for all browsers */
    -ms-overflow-style: none;  /* Hide scrollbar in IE & Edge */
    scrollbar-width: none;      /* Hide scrollbar in Firefox */
}

.scroll-content::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}
