/**
 * @file
 * Basic styling for Localgov Table paragraph.
 */

/* Headed table. */
.table-paragraph--headed table thead {
  background-color: #e9ecef;
}

.table-paragraph--headed table thead th {
  border-color: #9e9e9e;
}

/* Striped table. */
.table-paragraph--striped table thead {
  background-color: unset;
}

.table-paragraph--striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, .05);
}
