@media (max-width: 768px) {
  .custom-table table,
  .custom-table thead,
  .custom-table tbody,
  .custom-table th,
  .custom-table td,
  .custom-table tr {
    display: block;
    width: 100%;
  }
  .custom-table thead {
    display: none;
  }
  .custom-table tr {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  .custom-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    padding: 8px 10px;
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
  }
  .custom-table td:last-child {
    border-bottom: none;
  }
  .custom-table td::before {
    content: attr(data-label);
    font-weight: bold;
    color: #555;
  }
}/*# sourceMappingURL=Table.module.css.map */