/* Scrollable table wrapper — wide tables scroll horizontally inside the article only */

.fp-rich-content,
.wiki-article-body,
.wiki-content {
    max-width: 100%;
    overflow-x: clip;
}

.fp-article-table-scroll {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin: 1.5em 0;
    scrollbar-gutter: stable;
}

.fp-article-table-scroll > table {
    width: max-content;
    min-width: 100%;
    max-width: none;
    margin: 0;
    border-collapse: collapse;
}

.fp-article-table-scroll > table caption {
    caption-side: top;
}
