.dashboard-order-1{
  /* Order column link styles */
  .woocommerce-orders-table__cell-order-number a{
    text-decoration: underline;
    color: var(--dark);
    font-weight: 500;
  }

  /* Mobile landscape styles */
  @media (max-width: 767px) {
    /* Removing border top from the first td element (date) */
    .woocommerce-orders-table tbody td{
      &:first-of-type{
        border-top: none;
      }
    }
  }
}