/* Css Added here for Wysgeditor Table */

/* Base table styling inside post/page content */
.entry-content table,
.post-content table,
.page-content table,
#content table,
.wp-block-table table,
table {
  width: 100%;
  border-collapse: collapse;      /* Merge borders */
  border: 2px solid #503F76;      /* Outer border */
}

.entry-content th,
.entry-content td,
.post-content th,
.post-content td,
.page-content th,
.page-content td,
#content th,
#content td,
.wp-block-table th,
.wp-block-table td,
table th,
table td {
  border: 2px solid #503F76;      /* Cell borders */
  padding: 8px 10px;              /* Spacing inside cells */
  vertical-align: top;            /* Optional: align content */
}

/* If your theme forces border-spacing, kill it */
.entry-content table,
.post-content table,
.page-content table,
#content table,
.wp-block-table table,
table {
  border-spacing: 0 !important;
}

/* Optional: make wide tables scroll horizontally on mobile */
.entry-content .table-scroll,
.post-content .table-scroll,
.page-content .table-scroll,
#content .table-scroll,
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}