.table {
  width: 100%;
  border-collapse: collapse;

  tr {
    border: 1px solid var(--color-neutral-lighter);
  }

  tr[role="button"],
  tr[navigation-target] {
    user-select: none;
    cursor: pointer;
    transition: background-color 0.2s;

    &:hover {
      background-color: var(--color-neutral-lighter);
    }
  }

  th {
    box-sizing: border-box;
    font-size: 10px;
    line-height: 15px;
    font-weight: 600;
    text-align: left;
    color: #5a6268;
    padding: 8px;
  }

  td {
    box-sizing: border-box;
    padding: 12px 8px;

    p {
      font-size: 14px;
      line-height: 21px;
      margin: 0 0 8px;
    }

    p:first-child {
      font-size: 16px;
    }

    p:last-child {
      margin-bottom: 0;
    }
  }

  .actions {
    icon-simple-line-icons-options {
      display: inline-block;
      color: var(--color-neutral);
      cursor: pointer;
      font-size: 16px;

      svg {
        display: block;
      }
    }

    ul {
      flex-direction: column;
      list-style: none;
      padding: 0;
      margin: 0;
      background-color: #fff;
      border: 1px solid var(--color-neutral-lighter);
      border-radius: 4px;
      width: max-content;
      box-shadow: 0 0 5px #858c9417;
    }

    li {
      border-bottom: 1px solid var(--color-neutral-lighter);
    }

    li:last-child {
      border-bottom: none;
    }
  }

  .action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 12px 24px;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 19.07px;
    color: #1565c0;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;

    &.delete {
      color: var(--color-primary);
    }

    &:hover {
      background-color: var(--color-neutral-lighter);
    }
  }

  .col.actions {
    width: 32px;
  }
}
