/* Sets the font of the body text */
body,
p,
li,
a,
blockquote,
span,
div {
  font-family: Arial, Helvetica, sans-serif !important;
}





/* Ensures the Tablepress table with the table-borderless class has no border and no spacing between cells */
table.tablepress.table-borderless {
  border: 0 !important;
  border-collapse: collapse; /* or 'separate' if you prefer */
  border-spacing: 0;
  margin: 0 !important; /* Removes all outer margins */

}

/* Override TablePress cell borders/padding with higher specificity */
table.tablepress.table-borderless thead th,
table.tablepress.table-borderless tbody th,
table.tablepress.table-borderless tbody td,
table.tablepress.table-borderless tfoot th,
table.tablepress.table-borderless tfoot td {
  border: 0 !important;
  padding: 0 10px 5px 0 !important; 
  margin: 0 !important; /* Removes all outer margins */
}

/* Optional: header slightly tighter */
table.tablepress.table-borderless thead th {
  padding: 0 10px 5px 0 !important;
  margin: 0 !important; /* Removes all outer margins */

}


.wp-block-table table.tablepress.table-borderless td,
.wp-block-table table.tablepress.table-borderless th {
  border: 0 !important;
  padding: 0 10px 5px 0 !important;
    margin: 0 !important; /* Removes all outer margins */

}


/* Align header text to the bottom of the header cells */
table.tablepress.table-borderless thead th {
  vertical-align: bottom !important;
}


