/* tables
table.tablesorter {
  font-family:Verdana !important;
  background-color: #CDCDCD;
  margin:10px auto;
  width: 100%;
  font-size: 11px;
  text-align: left;
}
*/

table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}
  
/* unselected header/footer cell */
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
/*
  background-color: #EEEEEE;
  border: 1px solid #FFF;
  font-size: 13px;
*/
  padding: 4px 20px 4px 4px;
/*  min-width: 50px;*/
  max-width: 200px;
  width: auto !important;
  width: 100px;
}

table.tablesorter thead tr .header,
table.tablesorter .tablesorter-header {
  background-image: url(https://www.caida.org/images/tablesort_bg.gif);
  background-repeat: no-repeat;
  background-position: center right;
  cursor: pointer;
}

table.tablesorter thead .sorter-false {
  background-image: none;
  cursor: default;
  padding: 4px;
}

table.tablesorter tr:nth-child(odd) td {
  background-color: #e9e9e9;
}

/*
table.tablesorter tbody td {
  color: #3D3D3D;
  padding: 4px;
  vertical-align: top;
}
*/

table.tablesorter th.headerAsc,
table.tablesorter th.tablesorter-headerAsc {
  background-image: url(https://www.caida.org/images/tablesort_desc.gif);
}
tablesorter th.headerDesc,
table.tablesorter th.tablesorter-headerDesc {
  background-image: url(https://www.caida.org/images/tablesort_asc.gif);
}

/* used to hide a tbody while rebuilding to speed it up */
table.tablesorter .tablesorter-hidden {
	display: none;
}

/* selected sort field
table.tablesorter th.tablesorter-headerDesc, table.tablesorter th.tablesorter-headerAsc, .sortedfield {
  background-color: #6997D0;
  color: #FFF;
}
*/


/* *** tablesorter filter related CSS *** */
/* filter row */
.tablesorter-filter-row td {
  background: #eee;
  line-height: normal;
  text-align: center; /* center the input */
  -webkit-transition: line-height 0.1s ease;
  -moz-transition: line-height 0.1s ease;
  -o-transition: line-height 0.1s ease;
  transition: line-height 0.1s ease;
}
/* optional disabled input styling */
.tablesorter-filter-row .disabled {
  opacity: 0.5;
  filter: alpha(opacity=50);
  cursor: not-allowed;
}

/* hidden filter row */
.tablesorter-filter-row.hideme td {
  /*** *********************************************** ***/
  /*** change this padding to modify the thickness     ***/
  /*** of the closed filter row (height = padding x 2) ***/
  padding: 2px 4px;
  background-color: #fcc;
  /*** *********************************************** ***/
  margin: 0;
  line-height: 0;
  cursor: pointer;
}
.tablesorter-filter-row.hideme .tablesorter-filter {
  height: 1px;
  min-height: 0;
  border: 0;
  padding: 0;
  margin: 0;
  /* don't use visibility: hidden because it disables tabbing */
  opacity: 0;
  filter: alpha(opacity=0);
}

/* filters */
.tablesorter-filter {
  width: 95%;
  height: inherit;
  margin: 1px;
  padding: 1px;
  background-color: #fff;
  border: 1px solid #bbb;
  color: #333;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: height 0.1s ease;
  -moz-transition: height 0.1s ease;
  -o-transition: height 0.1s ease;
  transition: height 0.1s ease;
}

/* input placeholders */
::-webkit-input-placeholder {color:#999;} 
:-moz-placeholder {color:#999;}
::-moz-placeholder {color:#999;}
:-ms-input-placeholder {color:#999;}
