.tablepress .number-column {
  text-align: right;
}

.wp-block-post-content {
  overflow-wrap: break-word; /* Allows wrapping of long words */
  word-wrap: break-word;     /* Legacy support */
  word-break: normal;        /* Default line breaks at word boundaries */
  hyphens: none;             /* Disable automatic hyphenation */
}

.wp-block-post-content h1 {
  margin-top: 20px;
  margin-bottom: 10px;  /* Reduced from 20px */
  padding-left: 10px;
  padding-right: 10px;
}

.wp-block-post-content h2 {
  margin-top: 10px;     /* Fixed "px" to 10px (adjust as needed) */
  margin-bottom: 10px;  /* Set to match your goal */
  padding-left: 5px;
  padding-right: 5px;
}

/* H3 and other headings - 10px bottom margin */
.wp-block-post-content h3,
.wp-block-post-content h4,
.wp-block-post-content h5,
.wp-block-post-content h6 {
  margin-top: 15px;
  margin-bottom: 10px;
  padding-left: px;
  padding-right: px;
}

/* KEY: Zero top margin on paragraphs right after headings */
.wp-block-post-content h1 + p,
.wp-block-post-content h2 + p,
.wp-block-post-content h3 + p,
.wp-block-post-content h4 + p,
.wp-block-post-content h5 + p,
.wp-block-post-content h6 + p,
.wp-block-post-content .wp-block-heading + p,
.wp-block-post-content .wp-block-heading + div.wp-block-paragraph {
  margin-top: 0 !important;
}

ol.alpha-list {
  list-style-type: lower-alpha;
  padding-left: 1.5em;
}

/* Initial collapsed style */
.tablepress td.expandable {
  max-width: 300px; /* Adjust to your preferred width */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  position: relative;
}

/* Expanded style */
.tablepress td.expandable.expanded {
  white-space: normal;
  max-width: none;
}

/* "More..." indicator */
.tablepress td.expandable::after {
  content: ' More...';
  color: #0073aa;
  font-weight: bold;
  position: absolute;
  right: 5px;
  bottom: 0;
  background: white;
}

