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

table {
  border: 0;
  border-spacing: 0;
  font-family: Verdana, sans-serif;
  font-size: .96em;
  margin: 10px 0;
  width: 100%;
}
table table {
  font-size: 1em;
}
thead > tr {
  border-bottom: 1px solid #222;
}
table tr th,
table thead tr {
  background-color: #002868;
}
table thead tr .is-active {
  background-color: #426c97;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
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,
tr td {
  vertical-align: top;
}
tr td,
tr th {
  padding: 4px 9px;
  border: 0;
  text-align: left; /* LTR */
}
tr {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 0.1em 0.6em;
}
tr .is-active {
  background-color: #f5f5f5;
  }
tr.odd{
  background-color: #f3f3f3;
  border-top: 2px solid #ddd;
  }
tr.odd .is-active {
  background-color: #e5e5e5;
  }
.is-active .tablesort {
  color: orange;
  }
  
.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;
  }
}
