/**
  * Custom styles for core/table
  *
  * @link https://fullsiteediting.com/lessons/custom-block-styles/
  *
  */
.wp-block-table {
  position: relative;
  color: red;
}
.wp-block-table.is-style-bootstrap-table-bordered {
  color: red;
}
.wp-block-table.is-style-bootstrap-table-bordered table {
  width: 100%;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
}
.wp-block-table.is-style-bootstrap-table-bordered table > :not(caption) > * > * {
  border-color: inherit;
  padding: 0.5rem 0.5rem;
  background-color: var(--wp--preset--color--base);
  border-bottom-width: 1px;
}
.wp-block-table.is-style-bootstrap-table-bordered table tr td {
  text-align: center;
}
.wp-block-table.is-style-bootstrap-table-bordered table tr td:first-child {
  text-align: left;
}
.wp-block-table.is-style-bootstrap-table-bordered table tr td a {
  text-decoration: none;
  line-height: 18px;
  display: block;
}
