.t-table {
  margin: auto;
  width: 100%;
  font-size: 20px;
  border-collapse: collapse;
}

.t-table thead tr:first-child {
  border-top: none;
  background: #2c71cc;
  color: #fff;
}

.t-table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #f5f9fc;
}

.t-table th {
  display: none;
}

.t-table td {
  display: block;
}

.t-table td:first-child {
  margin-top: 0.5em;
}

.t-table td:last-child {
  margin-bottom: 0.5em;
}

.t-table td:before {
  content: attr(data-th) ": ";
  font-weight: bold;
  width: 120px;
  display: inline-block;
  color: #000;
}

.t-table th,
.t-table td {
  text-align: left;
}

.t-table {
  color: #333;
  border-radius: 0.4em;
  overflow: hidden;
}

.t-table tr {
  border-color: #bfbfbf;
}

.t-table th,
.t-table td {
  padding: 0.5em 1em;
}
@media screen and (max-width: 601px) {
  .t-table tr:nth-child(2) {
    border-top: none;
  }
}
@media screen and (min-width: 600px) {
  .t-table tbody tr:hover {
    background-color: #cacaca;
  }
  .t-table td:before {
    display: none;
  }
  .t-table th,
  .t-table td {
    display: table-cell;
    padding: 0.25em 0.5em;
  }
  .t-table th:first-child,
  .t-table td:first-child {
    padding-left: 0;
  }
  .t-table th:last-child,
  .t-table td:last-child {
    padding-right: 0;
  }
  .t-table th,
  .t-table td {
    padding: 1em !important;
  }
}

.row-actions {
  display: flex;
  align-items: center;
}

.row-actions .button:not(:last-child) {
  margin-right: 5px;
}