@media (max-width: 767px) {
    .table-mobile {
      border: none;
    }
    .table-mobile thead {
      display: none;
    }
    .table-mobile tr {
      display: block;
      margin-bottom: 15px;
      border-left: 5px solid #0d6efd;
      border-radius: 6px;
      padding: 12px 15px;
      background: #ffffff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    }
    .table-mobile td {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6px 0;
      border: none;
    }
    .table-mobile td::before {
      content: attr(data-label);
      font-weight: 600;
      color: #444;
      flex: 1;
      text-align: left;
    }
    .table-mobile td span,
    .table-mobile td button {
      flex: 2;
      text-align: right;
    }
    
    .table-mobile td[data-label="Acciones"] button {
      margin-left: 5px;
    }
    
}