/** 
  Pagination
**/
.myhd-pagination {
  list-style-type: none;
}

.myhd-pagination__item {
  display: inline-block;
}

.myhd-pagination__button:disabled {
  color: #333;
  background: transparent !important
}

.myhd-pagination__button:hover:disabled {
  color: #333;
}

.myhd-pagination__button.active:disabled {
  background-color: #005ff0 !important;
  color: #ffffff
}

/** 
  List Table
**/
.myhd-list-table__actions {
  width: 350px;
}

/** 
  Data Table
**/
.myhd-data-table__drawer--hide {
  overflow: hidden;  /* Hide the element content, while height = 0 */
  height: 0;
  opacity: 0;
  transition: height 2s, opacity 400ms 0ms;
}

.myhd-data-table__drawer--hide td {
  display: none;
}

.myhd-data-table__drawer--show {
  height: auto; 
  line-height: 1rem;
  opacity: 1;
  transition: height 2s, opacity 600ms 0ms;
}

.myhd-data-table__drawer--show td {
  display: table-cell;
}