.table {
  width: 100%;
  border-spacing: 0;
  tr td {
    padding: 5px 8px;
  }
  tr {
    list-style-type: none;
    font-size: 14px;
    padding: 5px 5px 7px 5px;
    margin: 0;
    &:not(.header) {
      td {
        border-top: solid 1px #eee;
      }
    }
    &:hover:not(.header) {
      background-color: var(--color-highlight);
      .destroy-object a {
        display: inline-block;
      }
    }
  }

  &.no-highlight {
    tr:hover {
      background-color: inherit;
      cursor: inherit;
    }
  }
