/* Fix for long submenu scrolling */
.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
    max-height: 80vh;      /* Limits height to 80% of screen height */
    overflow-y: auto;     /* Adds vertical scrollbar if needed */
    overflow-x: hidden;   /* Prevents horizontal shifting */
}

/* Make the scrollbar look better in the menu */
.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner::-webkit-scrollbar {
    width: 6px;
}

.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner::-webkit-scrollbar-thumb {
    background-color: #22a9e1; /* The blue color from your theme */
    border-radius: 10px;
}