/**
 * Core Table
 */

table:not([class]) {
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 1rem;
  border-style: hidden;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-dark-orange), 0.2);
  /* draws the table border  */
}

table:not([class]) td,
table:not([class]) th {
  padding: 1em;
  border: 0.1rem solid rgba(var(--color-dark-orange), 0.2);
}
