/* Mobile stacked style for TablePress */
@media screen and (max-width: 768px) {
  .tablepress thead {
    display: none;
  }

  .tablepress tr {
    display: block;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ddd;
  }

  .tablepress td {
    display: block;
    text-align: left;
    padding: 8px;
    position: relative;
    border: none;
    border-bottom: 1px solid #eee;
  }

  .tablepress td:before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 4px;
    color: #333;
  }
}
