/**
 * @file
 * Styles for Bartik's tables.
 */

table {
  width: 100%;
  margin: 10px 0;
  border-spacing: 0; 
  font-size: 14px;
}
tr {
  padding: 0.1em 0.6em;  
}
table tr th,
table tr th a,
table tr th a:hover,
table tr th a:focus {
  font-weight: bold;
}
table tbody tr th {
  vertical-align: top;
}
tr td,
tr th {
  padding: 4px 9px;
  text-align: left; /* LTR */ 
}
.tabledrag-handle:hover,
.tabledrag-handle {
  border: none;
}
[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;
  }
}
