/* Header row */
.wp-block-table.is-style-terralogiq thead tr {
  background-color: #0E426A;
  color: white;
}

/* Header cells - remove bottom border to avoid double thickness */
.wp-block-table.is-style-terralogiq thead th {
  background: transparent; /* so background-color from thead tr shows */
  border: 1px solid black;
  border-bottom: none;
  padding: 12px 15px;
  color: white;
}

/* First row cells - remove top border to avoid double thickness */
.wp-block-table.is-style-terralogiq tbody tr:first-child td {
  border: 1px solid black;
  background-color: #EDF0F6;
  color: black;
  padding: 12px 15px;
}

/* Default body cell styling */
.wp-block-table.is-style-terralogiq td {
  background-color: #EDF0F6;
  color: black;
}

/* Odd rows in tbody */
.wp-block-table.is-style-terralogiq tbody tr:nth-child(odd) td {
  background-color: #EDF0F6;
  color: black;
}

/* Even rows in tbody */
.wp-block-table.is-style-terralogiq tbody tr:nth-child(even) td {
  background-color: #EDF0F6;
  color: black;
}

/* First row no matter if it's in thead or tbody */
.wp-block-table.is-style-terralogiq tr:first-child th {
  background-color: #0E426A;
  color: white;
  border: 1px solid black;
  padding: 12px 15px;
}

.wp-block-table.is-style-terralogiq table {
  border-collapse: collapse;
  border-spacing: 0px;
}

.wp-block-table.is-style-terralogiq thead {
    border-bottom: 1px solid;
}

