
@import "../../app/variables";

@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: $pure-white;
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 10px;
    box-shadow: 0 2px 8px $shadow-extra-light;
  }

  .custom-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    padding: 8px 10px;
    border: none;
    border-bottom: 1px solid $bg-extra-light;
    position: relative;
  }

  .custom-table td:last-child {
    border-bottom: none;
  }

  .custom-table td::before {
    content: attr(data-label);
    font-weight: bold;
    color: $text-light;
  }
}
