/**
 * @file
 * Styles for Bootstrap Barrio's tables.
 */
table {
  caption-side: top !important;
}
table {
  border: 0;
  border-spacing: 0;
  font-size: 0.857em;
  margin-bottom: 1.5rem;
  width: 100%;
  border-collapse: collapse;
}
table table {
  font-size: 1em;
}
tr {
  border-bottom: 1px solid #e5e5e5;
  padding: 0.1em 0.6em;
  background: #fff;
}
thead > tr {
  border-bottom: 1px solid #000;
  background: #958a5f;
}

.table {
  --bs-table-striped-color: var(--bs-body-color);
  --bs-table-striped-bg: #f8fbfb !important;
}
table tr th {
  background: #958a5f;
  border-bottom-style: none;
}
table tr th,
table tr th a,
table tr th a:hover,
table tr th a:focus {
  color: #fff;
  font-weight: bold;
}
table tbody tr th {
  vertical-align: top;
}
tr td,
tr th {
  padding: 4px 9px;
  border: 1px solid #fff;
  text-align: left; /* LTR */
}
[dir="rtl"] tr td,
[dir="rtl"] tr th {
  text-align: right;
}

/**
 * Responsive tables.
 */
@media screen and (max-width: 37.5em) { /* 600px */
  th.priority-low,
  td.priority-low,
  th.priority-medium,
  td.priority-medium {
    display: none;
  }
}
@media screen and (max-width: 60em) { /* 920px */
  th.priority-low,
  td.priority-low {
    display: none;
  }
}
