@import '@unistylus/core';

.table-light {
  width: 100%;
  text-align: left;
  background: var(--app-color-light);
  color: var(--app-color-light-contrast);

  tr {
    margin: 0;
    padding: 0;
  }
  
  th {
    font-weight: 700;
  }

  th, td {
     padding: p('*', .5);
    border-bottom: 1px solid var(--app-color-light-tint);
  }

  thead th {
    border-bottom: 1px solid var(--app-color-light-shade);
  }
}