[data-responsive-table] {
    position: relative;
    width: 100%;
    overflow: hidden;
}

[data-responsive-table] > div {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

[data-responsive-table] > div::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

[data-scroll-button] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    transition: opacity 0.3s;
}

[data-scroll-button]:hover {
    background: rgba(0, 0, 0, 0.7);
}

[data-scroll-button="left"] {
    left: 10px;
}

[data-scroll-button="right"] {
    right: 10px;
}

[data-scroll-button].hidden {
    display: none;
}

@media (max-width: 768px) {
    [data-responsive-table] {
        margin: 0 10px;
    }
} 