@charset "UTF-8";
/**
 * TablePress styles (aligned with theme-13).
 * Colors / radius / font-size from Options → TablePress.
 */
.dt-container,
.tablepress-table-wrapper,
.tablepress-wrapper {
  margin: 24px 0;
  overflow-x: auto;
}

table.tablepress,
.tablepress,
table[id^=tablepress-] {
  width: 100%;
  margin: 24px 0;
  overflow: hidden;
  border: 1px solid var(--tablepress-row-border, rgba(255, 255, 255, 0.1));
  border-radius: var(--tablepress-border-radius, var(--block-border-radius, 10px));
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
  color: var(--tablepress-tbody-text, #fff);
  font-size: var(--tablepress-font-size, 16px);
}
table.tablepress thead tr th,
.tablepress thead tr th,
table[id^=tablepress-] thead tr th {
  padding: 14px 20px;
  border: none;
  border-bottom: 1px solid var(--tablepress-row-border, rgba(255, 255, 255, 0.08));
  border-radius: 0;
  background: var(--tablepress-thead-bg, var(--block-bg, transparent));
  color: var(--tablepress-thead-text, #fff);
  font-size: inherit;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}
table.tablepress thead tr th:first-child,
.tablepress thead tr th:first-child,
table[id^=tablepress-] thead tr th:first-child {
  border-top-left-radius: var(--tablepress-border-radius, var(--block-border-radius, 10px));
}
table.tablepress thead tr th:last-child,
.tablepress thead tr th:last-child,
table[id^=tablepress-] thead tr th:last-child {
  border-top-right-radius: var(--tablepress-border-radius, var(--block-border-radius, 10px));
}
table.tablepress tbody tr td,
.tablepress tbody tr td,
table[id^=tablepress-] tbody tr td {
  padding: 14px 20px;
  border: none;
  border-bottom: 1px solid var(--tablepress-row-border, rgba(255, 255, 255, 0.08));
  border-radius: 0;
  background: var(--tablepress-tbody-bg, rgba(255, 255, 255, 0.06));
  color: var(--tablepress-tbody-text, #fff);
  font-size: inherit;
  line-height: 1.3;
  vertical-align: top;
}
table.tablepress tbody tr td:first-child, table.tablepress tbody tr td.column-1,
.tablepress tbody tr td:first-child,
.tablepress tbody tr td.column-1,
table[id^=tablepress-] tbody tr td:first-child,
table[id^=tablepress-] tbody tr td.column-1 {
  font-weight: 700;
}
table.tablepress tbody tr:nth-child(even) td,
.tablepress tbody tr:nth-child(even) td,
table[id^=tablepress-] tbody tr:nth-child(even) td {
  background: var(--tablepress-alt-row-bg, rgba(255, 255, 255, 0.1));
}
table.tablepress tbody tr:hover td,
.tablepress tbody tr:hover td,
table[id^=tablepress-] tbody tr:hover td {
  background: rgba(255, 255, 255, 0.12);
}
table.tablepress tbody tr:last-child td,
.tablepress tbody tr:last-child td,
table[id^=tablepress-] tbody tr:last-child td {
  border-bottom: 0;
}
table.tablepress tbody tr:last-child td:first-child,
.tablepress tbody tr:last-child td:first-child,
table[id^=tablepress-] tbody tr:last-child td:first-child {
  border-bottom-left-radius: var(--tablepress-border-radius, var(--block-border-radius, 10px));
}
table.tablepress tbody tr:last-child td:last-child,
.tablepress tbody tr:last-child td:last-child,
table[id^=tablepress-] tbody tr:last-child td:last-child {
  border-bottom-right-radius: var(--tablepress-border-radius, var(--block-border-radius, 10px));
}

.dt-container .tablepress,
.tablepress-table-wrapper .tablepress {
  margin-top: 0;
  margin-bottom: 0;
}

.no-head-table thead tr th {
  background: none;
}

@media screen and (max-width: 768px) {
  .dt-container,
  .tablepress-table-wrapper,
  .tablepress-wrapper {
    overflow-x: auto;
  }
  table.tablepress,
  .tablepress,
  table[id^=tablepress-] {
    min-width: 560px;
  }
}

/*# sourceMappingURL=tablepress.css.map */
