.button {
  cursor: pointer;

  padding: 0;

  font: inherit;
  color: inherit;

  background: none;
  border: none;
  outline: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
  border-bottom: 1px solid var(--color-gray-eee);

  thead {
    border-bottom: 1px solid var(--color-gray-eee);

    tr {
      height: 42px;

      th {
        font-weight: 400;
        color: var(--color-gray-888);
        text-align: left;
        vertical-align: middle;

        .sortable-cell {
          display: flex;
          flex-direction: row;

          .sort-icon {
            visibility: hidden;
          }

          &:hover {
            .sort-icon {
              visibility: visible;
            }
          }
        }
      }

      th.actions {
        text-align: right;
      }
    }
  }

  tbody {
    tr {
      height: 42px;

      td {
        text-align: left;
        vertical-align: middle;
      }

      .actions {
        text-align: right;

        .delete-button {
          margin-left: 10px;
        }
      }
    }
  }
}
