.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;
        }
      }
    }
  }
}

.date:has(.mobile) {
  padding-right: 5px;
}

.sortable-cell.mobile {
  white-space: nowrap;
}

.actions-sheet {
  display: flex;
  flex-direction: column;

  .button {
    display: flex;
    width: 100%;
    height: 40px;
    min-height: 32px;
    padding: 8px 16px;
    gap: 12px;

    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.1px;
  }
}
