/*
* CSS for transaction tables
*/

/* Define a color for cancelled transactions */
.transaction-gray {
    color: gray !important;
}

/* Use the entire page width for tables */
table {
    width: 100% !important;
}

/* Set black text color for links in tables (override standard blue) */
table > tbody > tr > td > a {
    color: inherit;
    font-weight: bold;
  }

  table > tbody > tr > td > a:hover {
      color: orange;
  }

/* Set the styling for modified datatable toolbars (headers) */
.toolbar, #transactions_table_length {
    float:left;
}

#load_all_button {
    margin-left: 25px;
}