.mobile-menu-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease;
}

.mobile-menu-panel.open {
    max-height: 24rem;
    opacity: 1;
}

.table-scroll-wrap {
    -webkit-overflow-scrolling: touch;
}

.table-scroll-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 2rem;
    pointer-events: none;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.95), transparent);
}

@media (min-width: 768px) {
    .table-scroll-wrap::after {
        display: none;
    }
}
