/* Ensure tables collapse borders cleanly */
table {
  border-collapse: collapse;
  width: 100%;
}

/* Default fallback border for pasted Excel tables with no styling */
table:not([style*="border"]) td,
table:not([style*="border"]) th,
table:not([style*="border"]) {
  border: 1px solid #ccc;
  padding: 4px;
}

/* Let WYSIWYG inline styles like 'border: 1px solid red' actually display */
table[style*="border"], td[style*="border"], th[style*="border"] {
  border-style: solid;
  border-width: 1px;
  border-color: #000;
}