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

 
td.is-active {
  background-color: #eae8e8;
} 
 
 
table {
  border: 0;
  border-spacing: 0;
  font-size: 1em;
  margin: 10px 0;
  width: 100%;
}
table table {
  font-size: 1em;
}
tr {
  
  border-bottom: 1px solid #009453;
  padding: 0.1em 0.6em;


}
thead > tr {
  
  border-bottom: 1px solid #009453;
}
tr.odd {
  
  background: #e4e4e4;

}
table tr th {
  border-bottom-style: none;
}
table tr th,
table tr th a,
table tr th a:hover,
table tr th a:focus {
  color: #000;
  font-weight: bold;
  
}
table tbody tr th {
  vertical-align: top;
}
tr td,
tr th {
  border-top: none;
  border-left: none;
  border-right: none;
  padding: 4px 9px;
  border-bottom: : 1px solid #009453;
  text-align: left; /* LTR */
}
.tabledrag-handle:hover,
.tabledrag-handle {
  border: none;
}

/**
 * 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;
  }
}
